3v4l.org

run code in 300+ PHP versions simultaneously
<?php $imageTag = '<img src = http://nycxplorer.com/wp-content/uploads/2012/02/bagel1-1.jpg >'; //grab the src portion of the image tag $srcPattern = "/src.*?=.*?(\s|>)/s"; preg_match($srcPattern, $imageTag, $srcParts); $srcPart = $srcParts[0]; //remove all whitespace from within and around the src portion $srcPart = trim(preg_replace('/[\s]+/','', $srcPart); //grab the src URL $oldUrl = substr($srcPart, 4); //if there are quotes at the beginning of the url, cut them off if(strpos($oldUrl, '"') == 0 || strpos($oldUrl, "'") == 0) { $oldUrl = substr($oldUrl, 1, strlen($oldUrl)-2); } print_r($oldUrl); ?>
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.24, 5.3.26, 5.4.0 - 5.4.16
Parse error: syntax error, unexpected ';' in hEJqT on line 9
Process exited with code 255.
Output for 5.3.25
Parse error: syntax error, unexpected ';' in /in/UF3Ks on line 9
Process exited with code 255.
Output for 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 hEJqT on line 9
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in hEJqT on line 9
Process exited with code 255.
Output for 4.3.0
Parse error: parse error, unexpected ';' in /in/hEJqT on line 9
Process exited with code 255.

preferences:
224.6 ms | 1395 KiB | 104 Q