如何在 xml 文件中检索元素的两个实例
这就是我得到其他人的方式
$LargeImage = $xml->Items->Item->LargeImage->URL;
$author = $xml->Items->Item->ItemAttributes->Author;
echo ($author);
但是对于 $author,有 2 个作者,元素是这样的
Items->Item->ItemAttributes->
<Author>Ralph Bravaco</Author>
<Author>Shai Simonson</Author>
所以我目前的代码只能找回第一作者