目前,具有這種用於將數據追加到我的項目IM文件:更新現有元素在XML與PHP
$xmldoc = new DOMDocument();
$xmldoc->load('ex.xml');
$item= $xmldoc->createElement('item');
$item->setAttribute('id', '100');
$item->setAttribute('category', 'Fitness');
$item->setAttribute('name', 'Basketball');
$item->setAttribute('url', 'http://google.com');
$item->setAttribute('description', 'This is a description');
$item->setAttribute('price', '899');
$xmldoc->getElementsByTagName('items')->item(0)->appendChild($item);
$xmldoc->save('ex.xml');
現在追加在此之前,我想檢查具有現有元素「項」相同的屬性ID值。
如果是這樣,它應該用這些新數據更新該元素。
目前它只是追加和不檢查任何東西。
沒有工作,試過這個和你剛纔查詢的解決方案 - 它只是追加 – Karem 2011-12-14 23:13:44