Home > Article > Backend Development > Extended usage of php-mongodb
This time I will bring you how to use the extension of php-mongodb, what are the precautions when using the php-mongodb extension, the following is a practical case, let's take a look.
StartInstallation
New virtual machine Ubuntu14.04, apache2 and php5 are manually installed; the rest are missing.
Then we use one command to install the php extension
sudo pecl install mongodb
At this time, an error will be reported, showing that the dependent package php-pear is missing, then install it, the command is as follows
sudo apt-get install php-pear
When we When we execute the pecl install mongodb command again, we will be prompted that phpize is not an internal command. We need to install php5-dev, and then install the following command:
sudo apt-get install php7.0-dev
When we execute pecl install mongodb again, we should report this error, OpenSSL Library is missing. Then we need to install the following things
apt-get install openssl libssl-dev libssl0.9.8 libgtk2.0-dev
When we execute pecl install mongodb again, the hard work pays off and the installation is finally successful, but in the end we are prompted that we need to manually add the mongodb extension in the php.ini file. as the picture shows.
Finally we open vim /etc/php5/apache2/php.ini and add a line of code like this.
# /etc/php5/apache2/php.ini extension=mongodb.so
In the end, this effect will be displayed.
Similar to redis, pecl install redis
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website !
Recommended reading:
Implementation of PHP one-way hash encryption function
##PHP+MySQL timing data statistics optimization
ThinkPHP implements WeChat payment (jsapi payment) process tutorial detailed explanation_php example
The above is the detailed content of Extended usage of php-mongodb. For more information, please follow other related articles on the PHP Chinese website!