MongoDB\BSON\Javascript::__toString
(mongodb >=1.2.0)
MongoDB\BSON\Javascript::__toString — Returns the Javascript's code
Beschreibung
Diese Methode ist ein Alias für: MongoDB\BSON\Javascript::getCode().
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Returns the Javascript's code.
Beispiele
Beispiel #1 MongoDB\BSON\Javascript::__toString() example
<?php
var_dump((string) new MongoDB\BSON\Javascript('function foo(bar) { return bar; }'));
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
string(33) "function foo(bar) { return bar; }"
Siehe auch
- MongoDB\BSON\Javascript::getCode() - Returns the Javascript's code
- » BSON Types