PHP Doku:: Returns this code as a string - mongocode.tostring.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverTypesThe MongoCode classMongoCode::__toString

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoCode class

<<MongoCode::__construct

The MongoDate class>>

MongoCode::__toString

(PECL mongo >= 0.8.3)

MongoCode::__toStringReturns this code as a string

Beschreibung

public string MongoCode::__toString ( void )

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

This code, the scope is not returned.

Beispiele

Beispiel #1 MongoCode::__toString() example

<?php

$code 
= new MongoCode('return x;', array("x"=>"hi"));
echo 
"$code\n";

$code = new MongoCode('function() { for(i=0;i<10;i++) { db.foo.update({x:i}, {x:i+1}); } }');
echo 
"$code\n";

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

return x;
function() { for(i=0;i<10;i++) { db.foo.update({x:i}, {x:i+1}); } }

Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)