[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]
[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]