Source Code:
(back to article)
<?php $xml = new SimpleXMLElement('<book isbn="123456789"><title>PHP Basics</title></book>'); $xml['isbn'] = '987654321'; echo $xml->asXML();
Result:
Report an issue