Home > Backend Development > PHP Problem > How to install php extension on ubuntu

How to install php extension on ubuntu

藏色散人
Release: 2023-03-14 22:06:01
Original
2461 people have browsed it

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
Copy after login

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

sudo apt-get install php-mbstring
Copy after login

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!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template