How to Install PHP XML Extension in Ubuntu?
Hi Developer,
This article will provide an example of how to install php xml extension in ubuntu. step by step explain ubuntu php install xml extension. We will use install php xml extension ubuntu 20.04. This article goes in detailed on install php xml extension ubuntu.
We can install php xml extension using php-xml library. i will give you following list of commands to install php xml extension in ubuntu 22.10, ubuntu 22.04, ubuntu 21.10, ubuntu 21.04, ubuntu 20.04, ubuntu 18.04 and ubuntu 16.04 server.
Install php-xml Extension:
Solution:
You need to run both commands one by one:
sudo apt-get install php-xml
Solution for PHP 8.2
You need to run both command one by one:
sudo apt-get install php8.2-xml
Solution for PHP 8.1
You need to run both command one by one:
sudo apt-get install php8.1-xml
Solution for PHP 8.0
You need to run both command one by one:
sudo apt-get install php8.0-xml
Solution for PHP 7.4
You need to run both command one by one:
sudo apt-get install php7.4-xml
Solution for PHP 7.3
You need to run both command one by one:
sudo apt-get install php7.3-xml
Solution for PHP 7.2
You need to run both command one by one:
sudo apt-get install php7.2-xml
Restart Apache Server:
Now, restart apache2 server using following command:
sudo service apache2 restart
Check php-xml Extension Installed:
Here, we will run following command to check extension is installed or not:
php -m | grep -i xml
Output:
I hope it can help you...