欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-09 12:21:01
...
  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. }
复制代码