代码如下 | 复制代码 |
$string = "这是php提取文本内容字符串中的网址,连接为http://www.111cn.net 站点"; //连接后需要有个空格或回车。 $string = eregi_replace("http://([^ ,\r\n]*)","<a href=\\0 target=_blank>\\0</a>",$string); |
例子1
代码如下 | 复制代码 |
<?php $str='这样的http://www.111cn.net/ play/?id=1010&p=1_0-1试试!'; $pattern='/(http:\/\/|https:\/\/|ftp:\/\/)([\w:\/\.\?=&-_]+)/is'; $str=preg_replace($pattern, '<a href=\1\2>\2</a>', $str); echo $str; ?> |
例子2
代码如下 | 复制代码 |
<?php function autolink($foo) { $foo = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_/+.~#?&//=]+)', '<a href="/1" mce_href="/1" target=_blank rel=nofollow>/1</a>', $foo); if( strpos($foo, "http") === FALSE ){ $foo = eregi_replace('(www.[-a-zA-Z0-9@:%_/+.~#?&//=]+)', '<a href="http:///1" mce_href="http:///1" target=_blank rel=nofollow >/1</a>', $foo); }else{ $foo = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_/+.~#?&//=]+)', '/1<a href="http:///2" mce_href="http:///2" target=_blank rel=nofollow >/2</a>', $foo); } return $foo; } ?> |
时间: 2024-09-20 07:29:53