0

我正在尝试将查询存储在 mongodb 存储的 javascript 中,如下所示:

$query = $collection->count(array( 'email' => "me@hotmail.com", 'app_id' => $app_id ));

$db->system->js->save(array(
    "_id" => "archiveMessages2", 
    "value" => new MongoCode("function() { $query }")
));

然后我尝试通过执行如下函数来运行查询: print_r($db->execute("archiveMessages2()"));

但它不返回任何东西。

请帮忙

4

1 回答 1

0

现在知道了,只需要添加“return”之类的

"value" => new MongoCode("function() { return $query }")

于 2013-07-28T17:52:38.303 回答