3v4l.org

run code in 300+ PHP versions simultaneously
<?php $reg_exUrl = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/"; $text = 'lol www.google.bg is an awesome website;'; if(preg_match($reg_exUrl, $text, $url)) { // make the urls hyper links $new_text = preg_replace($reg_exUrl, "<a href="{$url[0]}">{$url[0]}</a> ", $text); } else { // if no urls in the text just return the text echo $text; } echo $new_text;
Output for 5.3.0 - 5.3.28, 5.4.0 - 5.4.28
Parse error: syntax error, unexpected '{' in /in/i8qI8 on line 6
Process exited with code 255.

preferences:
181.75 ms | 1399 KiB | 65 Q