3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xmlstr = <<<XML <mainGroup> <groupHeading type="heading">This is a sample heading</groupHeading> <group type="groupType1"> <title>Title1</title> <date when="0001"></date> </group> <group type="groupType1"> <title>Title2</title> <date when="0002"></date> </group> <group type="groupType2"> <title>Title3</title> <date when="0003"></date> </group> </mainGroup> XML; $xml=simplexml_load_string($xmlstr); // now loop through all <groupheading>, we use an xpath-query... foreach ($xml->xpath("//groupHeading") as $gh) { print_r($gh); } ?>
Output for 5.4.0 - 5.4.13
Parse error: syntax error, unexpected end of file in /in/unXFH on line 28
Process exited with code 255.
Output for 5.3.0 - 5.3.23
Parse error: syntax error, unexpected $end in /in/unXFH on line 28
Process exited with code 255.

preferences:
171.82 ms | 1395 KiB | 45 Q