我正在尝试使用 PHP/CodeIgniter 在 MongoDB 中查询,但我找不到解决方案...
我在“function1”中有第一个查询
$this->mongo_db->where("category" => getCatID("games");
在我的第二个函数“getCatID”中,我有
return $this->mongo_db->select('_id')->where("name" => $name)->get('Category');
但似乎第二个函数在函数 1 的第一个查询上继续。
我正在使用这个库...