3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<XML <cats> <cat> <name>Jack</name> <age>2</age> <color>grey</color> <color>white</color> </cat> <cat> <name>Maxwell</name> <age>12</age> <color>orange</color> <color>black</color> </cat> </cats> XML; function xml2array($fname){ $sxi = new SimpleXmlIterator($fname, null, true); return sxiToArray($sxi); } function sxiToArray($sxi){ $a = array(); for( $sxi->rewind(); $sxi->valid(); $sxi->next() ) { if(!array_key_exists($sxi->key(), $a)){ $a[$sxi->key()] = array(); } if($sxi->hasChildren()){ $a[$sxi->key()][] = sxiToArray($sxi->current()); } else{ $a[$sxi->key()][] = strval($sxi->current()); } } return $a; } // Read cats.xml and print the results: $catArray = xml2array($xml); print_r($catArray); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: SimpleXMLElement::__construct(): Passing null to parameter #2 ($options) of type int is deprecated in /in/Snet9 on line 21 Warning: SimpleXMLElement::__construct(): I/O warning : failed to load external entity "<cats> <cat> <name>Jack</name> <age>2</age> <color>grey</color> <color>white</color> </cat> <cat> <name>Maxwell</name> <age>12</age> <color>orange</color> <color>black</color> </cat> </cats>" in /in/Snet9 on line 21 Fatal error: Uncaught Exception: String could not be parsed as XML in /in/Snet9:21 Stack trace: #0 /in/Snet9(21): SimpleXMLElement->__construct('<cats>\n <cat>\n...', NULL, true) #1 /in/Snet9(42): xml2array('<cats>\n <cat>\n...') #2 {main} thrown in /in/Snet9 on line 21
Process exited with code 255.

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