请问是为什么?
function xml_decode($xml){
libxml_disable_entity_loader(true);
return json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
}
感谢 @OnlyViewSG 大神,原来上面第二个截图不是表示安装了该扩展,只是这些插件的作者而已。。。以下截图才是表示安装了该扩展:
后来使用过 yum install php-xml和yum --enablerepo remi install php-xml,都是安装失败,最后另外一位大神提出使用yum install --enablerepo=remi --enablerepo=remi-php56 php-xml则成功了!
--enablerepo启用指定源的意思,php5.6的,要指定remi-php56源
添加回答
举报
0/150
提交
取消