列个正则表达式,判断一段留言中的http;//www.phpx.com,在显示的时候加上超连接。
程序员文章站
2022-03-14 08:52:12
...
显示|正则
$string = "连接http://www.phpx.com 站点";
//连接后需要有个空格或回车。
$string = eregi_replace("http://([^ ,\r\n]*)","\\0",$string);
$string = eregi_replace("ftp://([^ ,\r\n]*)","\\0",$string);
print $string;
下一篇: 适应中文的substr函数