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 = new SimpleXMLElement($xmlstr); $arrs = json_decode(json_encode($movies), true); print_r($arrs);
Output for 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.16, 7.3.18 - 7.3.33, 7.4.0 - 7.4.4, 7.4.6 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Array ( [movie] => Array ( [title] => PHP: Behind the Parser [characters] => Array ( [character] => Array ( [0] => Array ( [name] => Ms. Coder [actor] => Onlivia Actora ) [1] => Array ( [name] => Mr. Coder [actor] => El ActÓr ) ) ) [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. [great-lines] => Array ( [line] => PHP solves all my web problems ) [rating] => Array ( [0] => 7 [1] => 5 ) ) )
Output for 7.3.17, 7.4.5
Array ( [movie] => Array ( [title] => PHP: Behind the Parser [characters] => Array ( [character] => Array ( [0] => Array ( [name] => Ms. Coder [actor] => Onlivia Actora ) [1] => Array ( [name] => Mr. Coder [actor] => El ActÓr ) ) ) [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. [great-lines] => Array ( [line] => PHP solves all my web problems ) [rating] => Array ( [0] => Array ( [@attributes] => Array ( [type] => thumbs ) [0] => 7 ) [1] => Array ( [@attributes] => Array ( [type] => stars ) [0] => 5 ) ) ) )
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6
Fatal error: Call to undefined function json_decode() in /in/NeNjj on line 33
Process exited with code 255.
Output for 5.1.2
Fatal error: Call to undefined function json_decode() in /in/NeNjj on line 34
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.9
Fatal error: Cannot instantiate non-existent class: simplexmlelement in /in/NeNjj on line 31
Process exited with code 255.
Output for 4.4.2
Fatal error: Cannot instantiate non-existent class: simplexmlelement in /in/NeNjj on line 32
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: simplexmlelement in /in/NeNjj on line 31

preferences:
256.46 ms | 401 KiB | 375 Q