自动将所有文本URL转换为工作超链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动将所有文本URL转换为工作超链接相关的知识,希望对你有一定的参考价值。
Does not require http in the text to link. It must start with www however. Optionaly make the links popup in a new window.
/** * AutoLinkUrls() * * @param mixed $str * @param bool $popup * @return void */ function AutoLinkUrls($str,$popup = FALSE){ $pop = ($popup == TRUE) ? " target="_blank" " : ""; $period = ''; $period = '.'; } $matches['1'][$i].'<a href="http'. $matches['4'][$i].'://'. $matches['5'][$i]. $matches['6'][$i].'"'.$pop.'>http'. $matches['4'][$i].'://'. $matches['5'][$i]. $matches['6'][$i].'</a>'. $period, $str); }//end for }//end if return $str; }//end AutoLinkUrls
以上是关于自动将所有文本URL转换为工作超链接的主要内容,如果未能解决你的问题,请参考以下文章