Me da este error:
Código PHP:
<b>Fatal error</b>: [COLOR="Red"] Call to undefined method DOMDocument::setIdAttribute() i[/COLOR]n <b>C:wampwwwagenda jovenNovedadesphpeliminar.php</b> on line <b>21</b><br />
Código PHP:
<item dir="fotos" id="almuerzo_fao_telefood_.jpg">
<foto><![CDATA[almuerzo_fao_telefood_.jpg]]></foto>
<titulo><![CDATA[ ]]></titulo>
<descripcion><![CDATA[ ]]></descripcion>
</item>
Código PHP:
$xml = new DOMDocument();
$xml->load($archivo_xml);
// con esto logro que funcione el select by ID.
[COLOR="#ff0000"]$xml->setIdAttribute('id', true);[/COLOR]
$a_borrar = $xml->getElementById($foto)->item(0);
$a_borrar->getElementsByTagName("titulo")->item(0)->childNodes->item(0)->nodeValue = "";
$a_borrar->getElementsByTagName("descripcion")->item(0)->childNodes->item(0)->nodeValue = "";
$xml->formatOutput = true;
$xml->save($archivo_xml);