发布于 2015-09-14 14:41:56 | 102 次阅读 | 评论: 0 | 来源: 网络整理
To access MongoDB from PHP you need:
Run:
sudo pecl install mongo
Open your php.ini file and add to it:
extension=mongo.so
It is recommended to add this to the section with the other “extensions,” but it will work from anywhere within the php.ini file.
Restart your web server (Apache, nginx, etc.) for the change to take effect.
See the installation docs for configuration information and OS-specific installation instructions.
注解
pecl requires that pear be installed. For those using apt-get, you may need to run the following:
sudo apt-get install php5-dev php5-cli php-pear
Download the correct driver for your environment from <http://github.com/mongodb/mongo-php-driver/downloads>. Thread safe is for running PHP as an Apache module (typical installation); non-thread safe is for CGI.
Unzip and add the php_mongo.dll file to your PHP extensions directory (usually the ext folder in your PHP installation).
Add to your php.ini:
extension=php_mongo.dll
Restart your web server (Apache, IIS, etc.) for the change to take effect.
For more information, see the Windows section of the installation docs.