MongoCode::__toString

(PECL mongo >= 0.8.3)

MongoCode::__toStringReturns this code as a string

Опис

public string MongoCode::__toString ( void )

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

This code, the scope is not returned.

Приклади

Приклад #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";

?>

Наведений вище приклад виведе щось подібне до:

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

User Contributed Notes

There are no user contributed notes for this page.
To Top