我是mongodb的新手,我喜欢打印查询以查找错误,我用谷歌搜索,但没有结果与我的期望有关。
the query is
-------------
$this->mdb_obj = new MongoClient("mongodb://192.168.1.47:27017");
$this->runboy_database = $this->mdb_obj->selectDB('runboy');
$this->post = new MongoCollection($this->runboy_database, 'post');
$result = $this->post->find(array("km" => array('$lt' => 5)));
那么如何调试查询呢?你的想法和建议会对我有所帮助