3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = new SimpleXMLElement('<root><elements attr="test"><el>test1</el><el>test2</el><el test_attr="123">test3</el></elements></root>'); //print_r(json_decode(json_encode((array) simplexml_load_string($xml)), 1)); function xml2array ( $xmlObject ) { $out = array (); foreach ( (array) $xmlObject as $index => $node ) $out[$index] = ( is_object ( $node ) ) ? xml2array ( $node ) : $node; return $out; } print_r(xml2array($xml));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [elements] => Array ( [@attributes] => Array ( [attr] => test ) [el] => Array ( [0] => test1 [1] => test2 [2] => test3 ) ) )

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:
58.59 ms | 402 KiB | 8 Q