1
獲取項目我有這樣的XML文件:PHP與XML - 通過ID
<item id="55">
<title>Title</title>
...
</item>
和提出的陣列上的XML數據的PHP文件...
foreach ($rss->getElementsByTagName('item') as $node) {
$item = array (
'title' => $node->getElementsByTagName('title')->item(0)->nodeValue,
);
array_push($feed, $item);
}
但我怎麼能只基於ID屬性得到只有一個項目?
我試過,但沒有奏效...
foreach ($rss->getElementsById('55') as $node) {
[PHP文檔(http://www.php.net/manual/en/domdocument.getelementbyid.php)是你的朋友。 –