今天偶然使用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