使u可点击($text)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使u可点击($text)相关的知识,希望对你有一定的参考价值。
Used to convert URLs in a string into links
function make_clickable($text){ $ret = " " . $text; $ret = preg_replace("#([ ])([a-z]+?)://([^, ]+)#i", "\1<a href="\2://\3" target="_blank">\2://\3</a>", $ret); $ret = preg_replace("#([ ])www.([a-z0-9-]+).([a-z0-9-.~]+)((?:/[^, ]*)?)#i", "\1<a href="http://www.\2.\3\4" target="_blank">www.\2.\3\4</a>", $ret); $ret = preg_replace("#([ ])([a-z0-9-_.]+?)@([w-]+.([w-.]+.)?[w]+)#i", "\1<a href="mailto:\[email protected]\3">\[email protected]\3</a>", $ret); return($ret);}
以上是关于使u可点击($text)的主要内容,如果未能解决你的问题,请参考以下文章