1

在 MongoHub 中,我可以使用此查询来查找我的结果。

db.cache.collection01.find({'md5': "\u0000\u0000\b :\u0007\"" }).skip(0).limit(30)

我怎样才能在 PHP 中做到这一点?我试过这个:

// Connect to test database
$m = new Mongo("mongodb://$dbhost");
$db = $m->$dbname;

// select the collection
$collection = $db->collection01;

// pull a cursor query
// search for fruits
$query = array('md5' => '"\u0000\u0000\b :\u0007\""');
$cursor = $collection->find($query);


foreach($cursor as $document) {
    var_dump($document);
}

谢谢

4

0 回答 0