Files
archived-presentations/slides/php5xml/simplexml_dom.php
Ilia Alshanetsky bc1df0f093 PHP|Works talks.
2004-10-13 14:53:59 +00:00

12 lines
308 B
PHP

<?php
$xml = simplexml_load_file(dirname(__FILE__) . '/thedata.xml');
/* convert SimpleXML to DOM object */
$dom = dom_import_simplexml($xml);
/* convert from DOM object back to SimpleXML */
$xml2 = simplexml_import_dom($dom);
/* confirm that no data was lost */
echo ($xml2->asXML() == $xml->asXML());
?>