3v4l.org

run code in 300+ PHP versions simultaneously
<?php function xml_to_array($xml,$main_heading = '') { $deXml = simplexml_load_string($xml); $deJson = json_encode($deXml); $xml_array = json_decode($deJson,TRUE); if (! empty($main_heading)) { $returned = $xml_array[$main_heading]; return $returned; } else { return $xml_array; } } $xml = '<user> <first_name>John</first_name> <last_name>Doe</last_name> <address> <line1>123 Street</line1> <line2>Apt. 9</line2> <city>Chicago</city> </address> </user> <user> <first_name>abc</first_name> <last_name>443</last_name> <address> <line1>777 Street</line1> <line2>Apt. 776</line2> <city>vvv</city> </address> </user>'; $data_array = xml_to_array($xml); var_dump($data_array);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: simplexml_load_string(): Entity: line 11: parser error : Extra content at the end of the document in /in/L5lSl on line 3 Warning: simplexml_load_string(): <user> in /in/L5lSl on line 3 Warning: simplexml_load_string(): ^ in /in/L5lSl on line 3 bool(false)

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
42.38 ms | 401 KiB | 8 Q