Home > Article > Backend Development > What to do if the required php xsl module is not installed
Solution to the problem that the required php xsl module is not installed: 1. Open the command window and execute "cd /data/soft/php-5.2.4"; 2. Pass "make intall php -i|more cd /usr/local/lib vim php.ini php -i|grep xsl" command to install the xsl extension.
#The operating environment of this tutorial: Windows 7 system, php-5.2.4 version, DELL G3 computer
Required php xsl What should I do if the module is not installed?
php installation xsl extension:
cd /data/soft/ php -i php -v cd /data/soft/php-5.2.4 cd ext/ cd xsl/ phpize ./configure make make intall php -i|more cd /usr/local/lib vim php.ini php -i|grep xsl
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What to do if the required php xsl module is not installed. For more information, please follow other related articles on the PHP Chinese website!