MongoCode::__toString
(PECL mongo >= 0.8.3)
MongoCode::__toString — Returns this code as a string
This extension that defines this method is deprecated. Instead, the MongoDB extension should be used. There is no equivalent for this method in the new extension.
Описание
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}); } }
Коментарии
404 Not Found