我正在尝试将查询存储在 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()"));
但它不返回任何东西。
请帮忙