說明:mongo 和 mongodb是兩個擴展,目前mongo擴展已經被廢棄,建議使用mongodb擴展,但對於一些老項目還在使用mongo擴展的,請參考此文。php
mongodb和其餘PHP擴展的安裝方法相似。html
系統:MacOS 10.12.6,MxSrvs集成包:(以前用MacOS 10.14安裝的時候,出現了各類問題,所以降級系統到10.12,感受比10.14好用。mongodb
降級教程參考:http://www.javashuo.com/article/p-mhckdbue-p.html )bash
從這裏下載擴展包:http://pecl.php.net/package/mongospa
若是安裝mongodb擴展,從這裏下載:http://pecl.php.net/package/mongodb.net
準備工做(若是已經安裝了autoconf和openssl請跳過這個步驟):debug
brew install autoconf brew install openssl
echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile export LDFLAGS="-L/usr/local/opt/openssl/lib" export CPPFLAGS="-I/usr/local/opt/openssl/include"
解壓,進入:code
/Applications/MxSrvs/bin/php/bin/phpize ./configure --with-php-config=/Applications/MxSrvs/bin/php/bin/php-config --with-openssl-dir=/usr/local/Cellar/openssl/1.0.2r make && make install
編輯php.ini,在extension區域添加mongodb擴展htm
extension=/Applications/MxSrvs/bin/php/lib/php/extensions/no-debug-non-zts-20131226/mongo.so
查看phpinfo()blog