大家好我有一個XML文件,例如解析嵌套的XML到PHP
<recipe>
<id>abc</id>
<name>abc</name>
<instructions>
<instruction>
<id>abc</id>
<text>abc</text>
</instruction>
<instruction>
<id>abc2</id>
<text>abc2<text>
<instruction>
<instructions>
<recipe>
在我的php文件我用
$url = "cafe.xml";
// get xml file contents
$xml = simplexml_load_file($url);
// loop begins
foreach($xml->recipe as $recipe)
{
code;
}
但它只能檢索配方ID和名稱,以便我如何可以檢索說明。
也許在代碼中,你必須訪問$ recipe->指令或類似的東西? – Eineki 2010-11-22 08:01:18