Actualizar XML

[cc lang=’php’  tab_size=”2″]

function updateNode($nodo,$valor,$archivo)
{
$xmlstr = file_geT_contents($archivo);
$xml = new SimpleXMLElement( $xmlstr );
$nodes = $xml->xpath($nodo);
$nodes[0][0] = $valor;
$xml->asXML($archivo);
}

[/cc]



Leave a Reply

Your email address will not be published. Required fields are marked *