我寫了簡單的代碼來從xml文件獲取內容到php。從外部xml文件加載xml內容到php
$xml = simplexml_load_file("http://localhost/xml_load/test_xml.xml");
print_r($xml);
第一次它已成功運行,但現在它給了我警告,並沒有正確執行。
Warning: simplexml_load_file(http://localhost/xml_load/test_xml.xml) [function.simplexml-load-file]: failed to open stream: HTTP request failed! <?xml version="1.0" encoding="ISO-8859-1"?> in C:\xampp\htdocs\XML_load\load_file.php on line 2
Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "http://localhost/xml_load/test_xml.xml" in C:\xampp\htdocs\XML_load\load_file.php on line 2
檢查文件是否存在於給定位置。它可能已經被你的代碼第一次修改了,它正確地加載了,現在給你提供了一些問題。 – 2012-04-03 12:28:50
檢查文件是否存在 – 2012-04-03 12:28:56