PHP错误:PHP Fatal error: Class 'XMLWriter' not found in xxxxxx 处理

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/cailongbiaoyuli/article/details/82790877

linux下,PHP使用Word导出功能,在导出文件的时候,报了个错误:

PHP Fatal error:  Class 'XMLWriter' not found in /home/tjpro/Admin/Lib/ORG/PHPWord/Shared/XMLWriter.php on line 61......

原因是在PHP中实例化"XMLWriter"这个类的时候,XMLWriter不存在,在php5.3以后这个类是PHP自带的,提示不存在应该是你在安装PHP的时候没有安装这个扩展。

解决方法:

安装XMLWriter扩展:yum -y install php-xml

安装后,重启PHP,nginx或者apache。

问题解决。

猜你喜欢

转载自blog.csdn.net/cailongbiaoyuli/article/details/82790877