如何用PHP编写MongoDB查询

时间:2013-05-13 13:26:38

标签: php mongodb

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

由于

0 个答案:

没有答案