Call to undefined function simplexml_load_file()

后端 未结 2 2045
忘了有多久
忘了有多久 2021-02-19 13:21

I have php 7.0 running on my ubuntu server.

php -m command says:


[PHP Modules]
calendar
Core
ctype
curl
date
dom
exif
fileinfo
filter
ftp
gd
gettext
hash
ico         


        
2条回答
  •  没有蜡笔的小新
    2021-02-19 13:54

    I had the same issue. I fixed it by installing php7.2-xml:

    $ sudo apt-get install php7.2-xml
    $ sudo systemctl reload apache2 
    

    After that, SimpleXML got listed by php -m:

    $ php -m | grep -i simple
    SimpleXML
    

提交回复
热议问题