Home  >  Article  >  php教程  >  php中将网址转换为超链接的函数

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

WBOY
WBOYOriginal
2016-06-06 20:38:251052browse

php中将网址转换为超链接的函数,需要的朋友可以参考下。

代码如下:
function showtext($text){
$search = array('|(http://[^ ]+)|', '|(https://[^ ]+)|', '|(www.[^ ]+)|');
$replace = array('$1', '$1', '$1');
$text = preg_replace($search, $replace, $text);
return $text;
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn