| 发表于:2007-06-25 15:57:271楼 得分:0 |
<? function enable_url($str) { $str = ereg_replace( "([url]www.[a-za-z0-9@:%_.~#-\?&]+[/url]) ", " <a href=\ "linkhttp://\\1\ " target=\ "_blank\ "> \\1 </a> ", $str); // 自动转化www开头的链接 $str = ereg_replace( "(((f ¦ht){1}tp://)[a-za-z0-9@:%_.~#-\?&]+) ", " <a href=\ "\\1\ " target=\ "_blank\ "> \\1 </a> ", $str); //转化[url]http://开头和ftp://开头的链接[/url] $str = str_replace( 'linkhttp:// ', 'http:// ',$str); $str = ereg_replace( "([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3}) ", " <a href=\ "mailto:\\1\ "> \\1 </a> ", $str); // 转化邮件地址 return $str; } //for example echo enable_url( "呵呵http://www.sina.com.cn西西哈哈 "); ?> | | |
|