3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xmlstr = <<<XML <?xml version='1.0' standalone='yes'?> <movies> <movie> <title>PHP: Behind the Parser</title> <characters> <character> <name>Ms. Coder</name> <actor>Onlivia Actora</actor> </character> <character> <name>Mr. Coder</name> <actor>El Act&#211;r</actor> </character> </characters> <plot> So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. </plot> <great-lines> <line>PHP solves all my web problems</line> </great-lines> <rating type="thumbs">7</rating> <rating type="stars">5</rating> </movie> </movies> XML; $movies = simplexml_load_string($xmlstr); var_dump($movies); foreach ($movies->movie->rating as $rating) { if ($rating["type"] == "stars") { var_dump((string) $rating); } }
Output for git.master, git.master_jit, rfc.property-hooks
object(SimpleXMLElement)#1 (1) { ["movie"]=> object(SimpleXMLElement)#2 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#3 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#5 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#4 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } } string(1) "5"

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:
40.46 ms | 403 KiB | 8 Q