调用未定义函数 Doctrine\ORM\Mapping\Driver\simplexml_load_file()
Call to undefined function Doctrine\ORM\Mapping\Driver\simplexml_load_file()
我正在使用 Symfony2 并将我的网站部署到 CentOs6 服务器。我遇到了这个异常
FatalErrorException: Error: Call to undefined function Doctrine\ORM\Mapping\Driver\simplexml_load_file() in vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php line 736
我错过了什么?谢谢
出于某种原因,您似乎没有在 php 版本中安装 simplexml
扩展程序。
查看 here 了解完整详情。
在 debian apache2 系统上
$ sudo apt install php-xml
$ sudo systemctl restart apache2
我正在使用 Symfony2 并将我的网站部署到 CentOs6 服务器。我遇到了这个异常
FatalErrorException: Error: Call to undefined function Doctrine\ORM\Mapping\Driver\simplexml_load_file() in vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php line 736
我错过了什么?谢谢
出于某种原因,您似乎没有在 php 版本中安装 simplexml
扩展程序。
查看 here 了解完整详情。
在 debian apache2 系统上
$ sudo apt install php-xml
$ sudo systemctl restart apache2