以下是代码:
require_once("config.php");
class xy {
// List all the ingredients in a container
public function objectsInContainer($container) {
global $mongo, $box;
$hereUGo = $mongo->selectDB($box);
$cursor = $hereUGo->find();
return $cursor;
}
}
在config.php中,有'
$mongo = new Mongo();
$box = $mongo->selectDB($box);
PHP告诉我PHP Fatal error: Call to undefined method MongoDB::find()
。我做错了什么?
答案 0 :(得分:2)
MongoDB
没有方法find
。您必须在搜索之前选择集合。