3v4l.org

run code in 300+ PHP versions simultaneously
<?php $bigKml = "<Document><name>test2.kmz</name><br><img src='files/bagel.png'><br><br></Document>"; $titleTagPattern = "/<Document><name>.*?</name>/"; preg_match($titleTagPattern, $bigKml, $titleTags); $titleTag = $titleTags[0]; $titlePattern = "/>.*?.kmz/"; preg_match($titlePattern, $bigKml, $titles); $title = $titles[0]; print_r($title); $imgPattern = "/<img src=.*?>/"; preg_match($imgPattern, $bigKml, $imageTags); print_r($imageTags); foreach($imageTags as $imageTag) { $urlPattern = "/'([^']*)'/"; preg_match($urlPattern, $imageTag, $oldUrls); $oldUrl = $oldUrls[1]; //the second element contains the match without the quotes print_r($oldUrl); $newUrl = "/var/www/resources/$oldUrl; } ?>
Output for 5.4.0 - 5.4.16
Parse error: syntax error, unexpected end of file in /in/Bnrk1 on line 23
Process exited with code 255.
Output for 5.3.0 - 5.3.26
Parse error: syntax error, unexpected $end in /in/Bnrk1 on line 23
Process exited with code 255.

preferences:
164.41 ms | 1395 KiB | 51 Q