php7 mongodb 扩展windows 安装

1. 打开phpinfo 查看 nts(非线程) 还是 ts (线程),然后查看操作位数


注: 86 等于 32 位 
这里写图片描述

2. 下载对应的版本的php_mongodb.dll 文件

下载链接: pecl mangodb下载 
(注: 下载需要翻墙,如果无法翻墙请留言发文件)

3. 把文件解压出来 php_mongodb.dll 文件复制到php安装目录下的 ext 目录下(列子: phpStudyphpphp-7.0.12-ntsext)

4. 打开php.ini 配置文件增加行 : extension=php_mongodb.dll

5. 重启,再打开phpinfo() 查看是否有mongodb扩展,出现下图则安装成功


这里写图片描述

(注: mongo 已经被废弃,不在更新。请看清楚是否是mongodb~)

from:http://blog.csdn.net/weixin_36429334/article/details/73467830

原文地址:https://www.cnblogs.com/shynshyn/p/7995745.html