Home  >  Article  >  Backend Development  >  How to install php extension on ubuntu

How to install php extension on ubuntu

藏色散人
藏色散人Original
2022-01-21 10:14:162358browse

How to install php extension on ubuntu: 1. Execute "sudo apt-get install php-gd"; 2. Execute "sudo apt-get install php-mbstring".

How to install php extension on ubuntu

The operating environment of this article: Windows7 system, PHP7.1 version, DELL G3 computer

How to install php extension on ubuntu?

ubuntu 16.04 Installing PHP extensions

1. In the past, to enable PHP extensions on Windows, just find the corresponding extension directly in the php.ini file, and then remove the preceding The semicolon is enough.

2. Now on ubuntu 16.04, I found that this does not work. Finally, through Baidu, I learned that the corresponding module should be installed.

3. For example, to enable the gd2 extension, you must install:

sudo apt-get install php-gd

4. To enable the mbstring extension, you must install:

sudo apt-get install php-mbstring

ps: As for this I haven’t studied the principle in detail. Anyway, it’s enough for now.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to install php extension on ubuntu. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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