Sometimes you want to alter the value of a node or an attribute in an xml document. You can read the XML file using PHP’s SimpleXML to assign new values to elements or attribute and save the changes back to the file.
<?php
$xml = simplexml_load_file(“data.xml”);
/* Aletr value of a node */
…
Advertisements