今天偶然使用php simplexml_load_file("XXXX")加载XML文件的时候报错。
Warning: simplexml_load_file(): I/O warning : failed to load external entity "config_xml/font_setting.xml"
后来将simplexml_load_file("XXXX")替换成simplexml_load_string(file_get_contents("XXXX"));
报错消失了,问题得到解决。
也可参照:https://stackoverflow.com/questions/21661593/simplexml-i-o-warning-failed-to-load-external-entity
本文介绍了一种在PHP中使用SimpleXML加载XML文件时遇到的I/O警告问题及解决方案。通过将simplexml_load_file替换为simplexml_load_string结合file_get_contents的方法成功解决了外部实体加载失败的问题。
6194

被折叠的 条评论
为什么被折叠?



