私はWordpressで表示しているXMLブログフィードを持っています。ここではXMLノードのシンプルな表現です:同じ名前のXMLノードを表示するにはどうすればいいですか?
<item>
<title>
Some title
</title>
<description>
Some description
</description>
<category>
category 1
</category>
<category>
category 2
</category>
<category>
category 3
</category>
</item>
ですから、カテゴリノード上に気付くでしょう3回表示されますが、常に同じ名前を持っています。だから私はループ内のXMLノードを表示するために、以下のPHPを使用しているときに私はカテゴリーノードの1つだけを得ることができ、残りは一意ではありません。
誰も私がそれらのカテゴリノードをすべて表示する方法を知っていますか?
<?php
$rss = new DOMDocument();
$rss->load('http://blog.com/rss.xml');
$feed = array();
foreach ($rss->getElementsByTagName('item') as $node) {
$item = array (
'title' => $node->getElementsByTagName('title')->item(0)->nodeValue,
'desc' => $node->getElementsByTagName('description')->item(0)->nodeValue,
'category' => $node->getElementsByTagName('category')->item(0)->nodeValue,
);
array_push($feed, $item);
}
?>
<?php
$limit = 3;
for($x=0;$x<$limit;$x++) {
$title = str_replace(' & ', ' & ', $feed[$x]['title']);
$description = $feed[$x]['desc'];
$category = $feed[$x]['category'];
echo $title;
echo $desc;
echo $category;
}
?>
タグ名が常に「カテゴリ」の場合は、タグ名 –