php自动给网址加上链接的方法

前端之家收集整理的这篇文章主要介绍了php自动给网址加上链接的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP自动给网址加上链接方法分享给大家供大家参考。具体实现方法如下:

这里自动匹配页面里的网址,包含http,ftp等,自动给网址加上链接

PHP;"> function text2links($str='') { if($str=='' or !preg_match('/(http|www\.|@)/i',$str)) { return $str; } $lines = explode("\n",$str); $new_text = ''; while (list($k,$l) = each($lines)) { // replace links: $l = preg_replace("/([ \t]|^)www\./i","\\1http://www.",$l); $l = preg_replace("/([ \t]|^)ftp\./i","\\1ftp://ftp.",$l); $l = preg_replace("/(http:\/\/[^ )\r\n!]+)/i","",$l); $l = preg_replace("/(https:\/\/[^ )\r\n!]+)/i",$l); $l = preg_replace("/(ftp:\/\/[^ )\r\n!]+)/i",$l); $l = preg_replace( "/([-a-z0-9_]+(\.[_a-z0-9-]+)*@([a-z0-9-]+(\.[a-z0-9-]+)+))/i","",$l); $new_text .= $l."\n"; } return $new_text; }

//使用范例:
$text = "Welcome www.jb51.cc :-)";
print text2links($text);

希望本文所述对大家的PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/21855.html

猜你在找的PHP相关文章