列个正则表达式,判断一段留言中的http;//www.phpx.com,在显示的时候加上超连接。

发表于:2007-07-01来源:作者:点击数: 标签:
$string = &quot;连接http://www.phpx.com 站点&quot;;<br>
//连接后需要有个空格或回车。<br>
<br>
$string =&nbsp;&nbsp;eregi_replace(&quot;http://([^ , ]*)&quot;,&quot;&lt;a href=\0 target=_blank&gt;\0&lt;/a&gt;&quot;,$string);<br>
$string =&nbsp;&nbsp;eregi_replace(&quot;ftp://([^ , ]*)&quot;,&quot;&lt;a href=\0 target=_blank&gt;\0&lt;/a&gt;&quot;,$string);<br>
<br>
print $string;

原文转自:http://www.ltesting.net