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; $parsed = simplexml_load_string($xml); $foo = $parsed->movies->movie->foo->bar->baz; var_dump($foo); ?>
Output for 8.3.0 - 8.3.6
Warning: Undefined variable $xml in /in/YPUBi on line 30 Deprecated: simplexml_load_string(): Passing null to parameter #1 ($data) of type string is deprecated in /in/YPUBi on line 30 Warning: Attempt to read property "movies" on false in /in/YPUBi on line 32 Warning: Attempt to read property "movie" on null in /in/YPUBi on line 32 Warning: Attempt to read property "foo" on null in /in/YPUBi on line 32 Warning: Attempt to read property "bar" on null in /in/YPUBi on line 32 Warning: Attempt to read property "baz" on null in /in/YPUBi on line 32 NULL
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
Warning: Undefined variable $xml in /in/YPUBi on line 30 Deprecated: simplexml_load_string(): Passing null to parameter #1 ($data) of type string is deprecated in /in/YPUBi on line 30 Warning: Attempt to read property "movies" on bool in /in/YPUBi on line 32 Warning: Attempt to read property "movie" on null in /in/YPUBi on line 32 Warning: Attempt to read property "foo" on null in /in/YPUBi on line 32 Warning: Attempt to read property "bar" on null in /in/YPUBi on line 32 Warning: Attempt to read property "baz" on null in /in/YPUBi on line 32 NULL
Output for 8.0.0 - 8.0.30
Warning: Undefined variable $xml in /in/YPUBi on line 30 Warning: Attempt to read property "movies" on bool in /in/YPUBi on line 32 Warning: Attempt to read property "movie" on null in /in/YPUBi on line 32 Warning: Attempt to read property "foo" on null in /in/YPUBi on line 32 Warning: Attempt to read property "bar" on null in /in/YPUBi on line 32 Warning: Attempt to read property "baz" on null in /in/YPUBi on line 32 NULL
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined variable: xml in /in/YPUBi on line 30 Notice: Trying to get property 'movies' of non-object in /in/YPUBi on line 32 Notice: Trying to get property 'movie' of non-object in /in/YPUBi on line 32 Notice: Trying to get property 'foo' of non-object in /in/YPUBi on line 32 Notice: Trying to get property 'bar' of non-object in /in/YPUBi on line 32 Notice: Trying to get property 'baz' of non-object in /in/YPUBi on line 32 NULL
Output for 7.3.32 - 7.3.33
NULL
Output for 5.0.4 - 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33
Notice: Undefined variable: xml in /in/YPUBi on line 30 Notice: Trying to get property of non-object in /in/YPUBi on line 32 Notice: Trying to get property of non-object in /in/YPUBi on line 32 Notice: Trying to get property of non-object in /in/YPUBi on line 32 Notice: Trying to get property of non-object in /in/YPUBi on line 32 Notice: Trying to get property of non-object in /in/YPUBi on line 32 NULL
Output for 5.1.2
Notice: Undefined variable: xml in /in/YPUBi on line 31 Notice: Trying to get property of non-object in /in/YPUBi on line 33 Notice: Trying to get property of non-object in /in/YPUBi on line 33 Notice: Trying to get property of non-object in /in/YPUBi on line 33 Notice: Trying to get property of non-object in /in/YPUBi on line 33 Notice: Trying to get property of non-object in /in/YPUBi on line 33 NULL
Output for 5.0.0 - 5.0.3
Notice: Undefined variable: xml in /in/YPUBi on line 30 Notice: Trying to get property of non-object in /in/YPUBi on line 32 Notice: Trying to get property of non-object in /in/YPUBi on line 32 Notice: Trying to get property of non-object in /in/YPUBi on line 32 Notice: Trying to get property of non-object in /in/YPUBi on line 32 Notice: Trying to get property of non-object in /in/YPUBi on line 32 NULL
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: simplexml_load_string() in /in/YPUBi on line 30
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.4
Fatal error: Call to undefined function: simplexml_load_string() in /in/YPUBi on line 30
Process exited with code 255.
Output for 4.4.2
Fatal error: Call to undefined function: simplexml_load_string() in /in/YPUBi on line 31
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: simplexml_load_string() in /in/YPUBi on line 30

preferences:
326.54 ms | 401 KiB | 456 Q