Home Backend Development PHP Tutorial Extended usage of php-mongodb

Extended usage of php-mongodb

Mar 24, 2018 pm 01:27 PM
php Instructions

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

1

sudo pecl install mongodb

Copy after login

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

1

sudo apt-get install php-pear

Copy after login

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:

1

sudo apt-get install php7.0-dev

Copy after login

When we execute pecl install mongodb again, we should report this error, OpenSSL Library is missing. Then we need to install the following things

1

apt-get install openssl libssl-dev libssl0.9.8 libgtk2.0-dev

Copy after login

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.

1

2

# /etc/php5/apache2/php.ini

extension=mongodb.so

Copy after login

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

CakePHP Date and Time

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

CakePHP File upload

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

CakePHP Routing

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

CakePHP Project Configuration

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

Discuss CakePHP

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP Quick Guide

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

How To Set Up Visual Studio Code (VS Code) for PHP Development

See all articles