简体   繁体   English

如何在 ubuntu 上的 xampp 上安装 php7 mongodb 驱动程序

[英]how to install php7 mongodb driver on xampp on ubuntu

I want to know, how to install monngodb driver for php7 in xampp on ubuntu.我想知道,如何在 ubuntu 上的 xampp 中为 php7 安装 monngodb 驱动程序。

I have already download driver mongodb-1.1.6.tgz.我已经下载驱动程序mongodb-1.1.6.tgz。 but do't know how to install.但是不知道怎么安装。

The new PHP MongoDB driver can be found in PECL.可以在 PECL 中找到新的 PHP MongoDB 驱动程序。

To install, just:要安装,只需:

pecl channel-update pecl.php.net

pecl install mongodb

echo "extension=mongodb.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`

Ultimately, this extension is not intended to be used alone.最终,此扩展不打算单独使用。 Users should considering using this driver alongside one or more userland PHP libraries, such as mongo-php-library .用户应该考虑将此驱动程序与一个或多个用户级 PHP 库一起使用,例如mongo-php-library

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM