3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = <<<XML <data> <prod id="1"> <layer id="layer_0" imgSRC="data/361_layer_0.png"/> <layer id="layer_1" imgSRC="data/362_layer_0.png"/> <layer id="layer_2" imgSRC="data/363_layer_0.png"/> </prod> <prod id="2"> <layer id="layer_0" imgSRC="data/361_layer_0.png"/> <layer id="layer_1" imgSRC="data/362_layer_0.png"/> <layer id="layer_2" imgSRC="data/363_layer_0.png"/> </prod> </data> XML; $xml = simplexml_load_string($x); // assuming XML in $x $node = $xml->xpath("//prod[@id='2']")[0]; var_dump($node);
Output for 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 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.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
object(SimpleXMLElement)#2 (2) { ["@attributes"]=> array(1) { ["id"]=> string(1) "2" } ["layer"]=> array(3) { [0]=> object(SimpleXMLElement)#3 (1) { ["@attributes"]=> array(2) { ["id"]=> string(7) "layer_0" ["imgSRC"]=> string(20) "data/361_layer_0.png" } } [1]=> object(SimpleXMLElement)#4 (1) { ["@attributes"]=> array(2) { ["id"]=> string(7) "layer_1" ["imgSRC"]=> string(20) "data/362_layer_0.png" } } [2]=> object(SimpleXMLElement)#5 (1) { ["@attributes"]=> array(2) { ["id"]=> string(7) "layer_2" ["imgSRC"]=> string(20) "data/363_layer_0.png" } } } }
Output for 4.4.3 - 4.4.9, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/kcOor on line 18
Process exited with code 255.
Output for 4.4.2, 5.1.2
Parse error: syntax error, unexpected '[' in /in/kcOor on line 19
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/kcOor on line 18
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/kcOor on line 18
Process exited with code 255.

preferences:
238.35 ms | 401 KiB | 359 Q