<?xml version="1.0" encoding="ISO-8859-1" ?>
<pages>
<page>
<title>Home</title>
<content>Lorem Ipsum</content>
</page>
<page>
<title>Pictures</title>
<content>Lorem Ipsum</content>
</page>
<page>
<title>Information</title>
<content>Lorem Ipsum</content>
</page>
</pages>
私のXML
$url = "xml->build.xml";
$xml = simplexml_load_file($url);
$i = 1;
foreach($xml->page as $page) {
echo "<strong>Page ".$i.":</strong> ".$page->title."<br/>";
$i++;
}
私のPHP
私は得ています:
警告: simplexml_load_file(): I/O 警告: 外部エンティティ "xml->build.xml" のロードに失敗しました
その簡単なスクリプトから!何か案は?:)
更新されました。これは正確な XML ファイルです
<?xml version="1.0" encoding="ISO-8859-1" ?>
<pages>
<page>
<title>Home</title>
<content>Lorem Ipsum</content>
</page>
<page>
<title>Pictures</title>
<content>Lorem Ipsum</content>
</page>
<page>
<title>Information</title>
<content>Lorem Ipsum</content>
</page>
</pages>
<css>
<css-tag>
<title>background-color</title>
<value>#FFF</value>
</css-tag>
</css>
<layout>1</layout>