3v4l.org

run code in 300+ PHP versions simultaneously
<?php function ReadXml($xmlstr) { $xml = simplexml_load_string($xmlstr); foreach($xml as $key=>$val) { print $key; if(!empty($val)) print ':' . $val; } } $xmlstr= '<Address><to>James</to><from>Jani</from><heading>Reminder</heading><body>Please check your mail.</body></Address>' ; ReadXml($xmlstr);

preferences:
44.96 ms | 402 KiB | 5 Q