(mongodb >=1.2.0)
MongoDB\BSON\Javascript::__toString — Returns the Javascript's code
This method is an alias of: MongoDB\BSON\Javascript::getCode().
This function has no parameters.
Returns the Javascript's code.
Example #1 MongoDB\BSON\Javascript::__toString() example
<?php
var_dump((string) new MongoDB\BSON\Javascript('function foo(bar) { return bar; }'));
?>
The above example will output:
string(33) "function foo(bar) { return bar; }"