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>"; $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.16
Parse error: syntax error, unexpected end of file in /in/4aALQ on line 16
Process exited with code 255.
Output for 5.4.0 - 5.4.15
Parse error: syntax error, unexpected end of file in qDZM1 on line 16
Process exited with code 255.
Output for 5.3.26
Parse error: syntax error, unexpected $end in /in/4aALQ on line 16
Process exited with code 255.
Output for 5.3.25
Parse error: syntax error, unexpected $end in /in/qDZM1 on line 16
Process exited with code 255.
Output for 5.3.0 - 5.3.24
Parse error: syntax error, unexpected $end in qDZM1 on line 16
Process exited with code 255.

preferences:
178.95 ms | 1395 KiB | 51 Q