<div class="codetitle"> <span><a style="CURSOR: pointer" data="65662" class="copybut" id="copybut65662" onclick="doCopy('code65662')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code65662"> <br>function showtext($text){ <br>$search = array('|(http://[^ ]+)|', '|(https://[^ ]+)|', '|(www.[^ ]+)|'); <br>$replace = array('<a href="%241" target="_blank">$1</a>', '<a href="%241" target="_blank">$1</a>', '<a href="http://%241" target="_blank">$1</a>'); <br>$text = preg_replace($search, $replace, $text); <br>return $text; <br>} <br> </div>