Heim >Backend-Entwicklung >PHP-Tutorial >Class 'MongoClient' not found

Class 'MongoClient' not found

WBOY
WBOYOriginal
2016-06-06 20:09:291620Durchsuche

环境:
PHP5.6.2
Apache2

安装php-mongo driver

<code>[Jack:~ $] sudo pecl install mongo
pecl/mongo is already installed and is the same as the released version 1.6.14

[Jack:~ $] vi /etc/php.ini
extension=mongo.so

[Jack:~ $] apachectl restart
</code>

我已经安装php-mongo driver,php.ini也添加了扩展,但是还是报这个错,怎么破?
代码:

<code><?php error_reporting(E_ALL);
ini_set('display_errors', 1);
$mongo = new MongoClient();
</code></code>

报错:

<code>Fatal error: Class 'MongoClient' not found in /private/var/www/index.php on line 5</code>

回复内容:

环境:
PHP5.6.2
Apache2

安装php-mongo driver

<code>[Jack:~ $] sudo pecl install mongo
pecl/mongo is already installed and is the same as the released version 1.6.14

[Jack:~ $] vi /etc/php.ini
extension=mongo.so

[Jack:~ $] apachectl restart
</code>

我已经安装php-mongo driver,php.ini也添加了扩展,但是还是报这个错,怎么破?
代码:

<code><?php error_reporting(E_ALL);
ini_set('display_errors', 1);
$mongo = new MongoClient();
</code></code>

报错:

<code>Fatal error: Class 'MongoClient' not found in /private/var/www/index.php on line 5</code>

命令行执行php -m检查一下模块是否加载

你写错了,应该是new mongo

安装扩展你可以参考这个,基本一样的扩展

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn