解决PHP-问题:Class 'SimpleXMLElement' not found in

况野
2023-12-01

1.问题

   在ubuntu 16.10中,学习PHP,学习到PHP如何生成XML文件时候,碰到了这个问题:

PHP Fatal error: Class 'ClassName\SimpleXMLElement' not found in /var/www/html/.../reg.class.php on line 40;

 

2.解决

   2.1 安装php7.0-xml。

      在ubuntu中可以使用"sudo apt-get install php7.0-xml"进行安装。

   2.2 重启apache服务。

           在ubuntu中可以使用“sudo service apache2 restart”重启apache服务。

  最后问题得到解决。

 

 类似资料: