PHP 8.3.4 Released!

インストール手順

この拡張モジュールはデフォルトで有効になっています。無効にしたい場合は、次のオプションを指定してコンパイルします。 --disable-simplexml

add a note

User Contributed Notes 4 notes

up
-1
ottakar at freezed dot me
6 years ago
This XML module is not provided on a default php (v7) install on Debian GNU/Linux stretch (9.3)
Add it with: sudo apt-get install php-xml
up
-17
Rapitharian at hotmail dot com
4 years ago
To install on CentOS and Redhat, run: sudo yum -y install php-xml
up
-19
morel dot josh at hotmail dot com
7 years ago
For Linux Ubuntu using PHP 7:
sudo apt-get install php7.0-xml
up
-19
shashank at shankee dot com
6 years ago
Installing simpleXml using composer:

"composer require ext-simplexml"

The extension is enabled by default in most distros. You can check the list of php modules using:

"php -m"
To Top