我想制作一个使用 Mongodb 的 php 应用程序。
当我在本地主机上运行应用程序时,我得到了这个:
致命错误:未捕获的异常“MongoConnectionException”,消息“无法连接到:127.0.0.1:27017:1000 毫秒后超时”
我的代码是:
<?php
// Config
$dbhost = 'localhost';
$dbname = 'test';
// Connect to test database
$m = new Mongo("mongodb://$dbhost");
$db = $m->$dbname;
// select the collection
$collection = $db->shows;
// pull a cursor query
$cursor = $collection->find();
foreach($cursor as $document) {
var_dump($document);
}
?>