How to install mongoDB extension in php7 and mongodb extension in php7
This article describes how to install mongoDB extension in php7. We will share this with you for your reference. The details are as follows:
Here we use the pecl command to install
First, go to the php7 installation directory.
$/Usr/local/php7/bin/pecl install mongodb
Press enter. After the execution is successful, the following results are output:
...... Build process completed successfullyInstalling '/usr/local/php7/lib/php/extensions/no-debug-non-zts-20151012/mongodb. so 'Install OK: channel: // pecl.php.net/mongodb-1.1.7configuration option "php_ini" is not set to php. ini locationYou shoshould add "extension = mongodb. so "to php. ini
Next, open the php. ini file and add the extension = mongodb. so configuration.
Or directly execute the following command to add:
Copy codeThe Code is as follows: $ echo "extension = mongodb. so "> '/usr/local/php7/bin/php -- ini | grep" Loaded Configuration "| sed-e" s |. *: \ s * | "'
After the configuration is complete, execute phpinfo (). If you see mongoDB, congratulations, the installation is successful. If you do not see it, check your development environment.
Note: The installation directory of php7 in the preceding command is/usr/local/php7/. If you install it in another directory, modify the paths of pecl and php commands accordingly.