看看这个并帮我解决这个问题。这个没有用..
$text = "Hello I am the PHP.go from here http://php.net"
$pattern = "/http:\/\/(www\.)?([^.]+\.[^.\s]+\.?[^.\s]*)/i";
$replace = "<a href='http://\\1\\2'>http://\\1\\2</a>";
$string = preg_replace($pattern,$replace,$text);
echo $string;
这是它显示的错误。
Parse error: syntax error, unexpected '$pattern' (T_VARIABLE) in
答案 0 :(得分:1)
如果您的代码是在这里写的,那么您在$ text结尾处缺少分号。