我有这个例子。
db.Wall.runCommand( "text", { search : "See" } );
如何从 PHP 调用它?MongoCollection
我在课堂上找不到方法,
注意我正在运行 mongo 2.4 dev 版本。
我尝试使用没有运气的命令方法 Collection 称为 Wall
$ret = $db->command( array(
"runCommand" => "Wall",
"text" => array('search' => $text))
);
输出是
Array ( [ok] => 0 [errmsg] => no such cmd: runCommand [bad cmd] => Array ( [runCommand] => Wall [text] => Array ( [search] => See ) ) )
我找到了答案,但我需要等待 7 小时,因为我的声誉很低 :)
$ret = $db->command( array(
"text" => "Wall",
"search" => $text)
);