MongoDB连接

时间:2015-06-07 12:00:46

标签: php mongodb

我正在尝试使用PHP建立mongodb连接。 php脚本由ajax调用。这里是创建客户端的代码:

        $host = 'localhost';
        $port = '27017';
        $url = "mongodb://$host:$port";
        $client = new Mongo("$url");
并使用此客户端进一步处理。但代码似乎不起作用。在使用var_dump转储客户端时,以下输出来自

object(Mongo)#1 (4) {
  ["connected"]=>
  bool(true)
  ["status"]=>
  NULL
  ["server":protected]=>
  NULL
  ["persistent":protected]=>
  NULL
}

0 个答案:

没有答案