代码如下 复制代码
function makeclickablelinks($text)
{
$text = eregi_replace('(((f|ht){1}tp://)[-a-za-z0-9@:%_+.~#?&//=]+)', '1', $text); $text = eregi_replace('([[:space:]()[{}])(www.[-a-za-z0-9@:%_+.~#?&//=]+)', '12', $text); $text = eregi_replace('([_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})', '1', $text);
return $text;
}
http://www.bkjia.com/phpjc/631325.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/631325.htmltecharticle该函数将 url 和 e-mail 地址字符串转换为可点击的超级链接。 代码如下 复制代码 function makeclickablelinks($text) { $text = eregi_replace('(((f|ht){1}tp:/...
