发布于 2015-09-14 14:41:56 | 91 次阅读 | 评论: 0 | 来源: 网络整理

从PHP访问MongoDB

To access MongoDB from PHP you need:

  • The MongoDB server running. The server is the mongod file, not the mongo client (note the “d” at the end).
  • The MongoDB PHP driver installed.

安装PHP驱动

*NIX

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

Windows

  • 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.

使用PHP驱动

要开始使用, 查看 手册API 文档.

参见

最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务