Php/docs/mongocode.tostring

来自菜鸟教程
跳转至:导航、​搜索

MongoCode::__toString

(PECL mongo >= 0.8.3)

MongoCode::__toString返回代码的字符串形式


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 MongoCode::__toString ( ) : string

参数

此函数没有参数。


返回值

该代码,不会返回作用域。


范例

Example #1 MongoCode::__toString() 例子

<?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}); } }