输入banner图图片脚本导航/分类

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

  1. function showtext($text){
  2. $search = array('|(http://[^ ]+)|', '|(https://[^ ]+)|', '|(www.[^ ]+)|');
  3. $replace = array('$1', '$1', '$1');
  4. $text = preg_replace($search, $replace, $text);
  5. return $text;
  6. }