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 ($value->children() as $item) { echo "$item[id], $item[img], $item[cost]<br />"; } }
Output for git.master, git.master_jit, rfc.property-hooks
hats: <br />Chicago BULLS, bulls.jpeg, $25.00<br />Toronto RAPTORS, raptors.jpeg, $25.00<br />Orlando MAGIC, magic.jpeg, $25.00<br />clothes: <br />Chicago BULLS 23, bullstee.jpeg, $30.00<br />Toronto RAPTORS 23, torontotee.jpeg, $30.00<br />Orlando MAGIC 23, magictee.jpeg, $30.00<br />

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