3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = <<<XML <items> <hats> <a id="Chicago BULLS" img="bulls.jpeg" cost="$25.00" /> <b id="Toronto RAPTORS" img="raptors.jpeg" cost="$25.00" /> <c id="Orlando MAGIC" img="magic.jpeg" cost="$25.00" /> </hats> <clothes> <a id="Chicago BULLS 23" img="bullstee.jpeg" cost="$30.00" /> <b id="Toronto RAPTORS 23" img="torontotee.jpeg" cost="$30.00" /> <c id="Orlando MAGIC 23" img="magictee.jpeg" cost="$30.00" /> </clothes> </items> XML; $xml = simplexml_load_string($x); foreach ($xml->children() as $name => $value) { echo "$name: <br />"; foreach ($name->children() as $item) { echo "$item[id], $item[img], $item[cost]<br />"; } }
Output for git.master, git.master_jit, rfc.property-hooks
hats: <br /> Fatal error: Uncaught Error: Call to a member function children() on string in /in/kKYOX:21 Stack trace: #0 {main} thrown in /in/kKYOX 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:
38.9 ms | 401 KiB | 8 Q