php中将网址转换为超链接的函数

前端之家收集整理的这篇文章主要介绍了php中将网址转换为超链接的函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="2148" class="copybut" id="copybut2148" onclick="doCopy('code2148')"> 代码如下:

<div class="codebody" id="code2148">
function showtext($text){
$search = array('|(http://[^ ]+)|','|(https://[^ ]+)|','|(www.[^ ]+)|');
$replace = array('<a href="$1" target="_blank">$1','<a href="$1" target="_blank">$1','<a href="http://$1" target="_blank">$1');
$text = preg_replace($search,$replace,$text);
return $text;
}

猜你在找的PHP相关文章