mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
12 lines
308 B
PHP
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());
|
|
?>
|