我试图遍历XML文档并弄清每一项的详细信息。
我设法进入单个项目并打印其值:
foreach($xml->children() as $games){
echo $games->item->title;
}
但是它不会遍历所有值。 我本能地循环说它应该看起来像这样:
foreach($xml->children()->item as $games){
echo $games->title;
}
但这不会返回任何内容。
XML示例:
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:g="http://base.google.com/ns/1.0">
<channel>
<title>feed EUR</title>
<link>https://www.google.com/</link>
<description>Lorem ipsum</description>
<item>
<g:id>99f3a672-c54a-11e8-83c9-186590d66063</g:id>
<title>7 Days to Die Steam Key GLOBAL</title>
</item>
<item>
<g:id>9aacf9ec-c54a-11e8-9925-186590d66063</g:id>
<title>A Hat in Time Steam Key GLOBAL</title>
</item>
<item>
答案 0 :(得分:0)
根<rss>
节点的子节点是<channel>
,因此您可以遍历它们:
foreach ($xml->channel as $channel) {
echo ($channel->title);
}