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(strposs($oldUrl, '"') == 0 || strposs($oldUrl, "'") == 0) { $oldUrl = substr($oldUrl, 1, strlen($oldUrl)-2); } print_r($oldUrl); ?>
Output for 5.4.0 - 5.4.16
Parse error: syntax error, unexpected '$oldUrl' (T_VARIABLE) in 4vELj on line 12
Process exited with code 255.
Output for 5.3.0 - 5.3.24, 5.3.26
Parse error: syntax error, unexpected T_VARIABLE in 4vELj on line 12
Process exited with code 255.
Output for 5.3.25
Parse error: syntax error, unexpected T_VARIABLE in /in/vFuMk on line 12
Process exited with code 255.

preferences:
181.4 ms | 1394 KiB | 51 Q