我遵循了 mongoDB 的结构:
- 数据库名称:
bios
- 用户:“费斯”
- 密码:“嘘”
- IP:1.2.3.4
- 集合名称:bios2
来自 MongoVUE:
这是我的 PHP 代码片段:
$db = new Mongo('mongodb://fess:boo@1.2.3.4/bios');
// if i remove "bios" it asks default db name
$collection_bios2 = $db->bios2;
$cursor_bios2 = $collection_bios2->find(); // <- here I get error
// PHP Fatal error: Call to undefined method MongoDB::find()
...
$db->close();
为什么我会收到此错误?
我看到了其他例子,似乎$collection_bios2
应该是集合。
谢谢