将字符串中的URL转换为超链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将字符串中的URL转换为超链接相关的知识,希望对你有一定的参考价值。

This function converts URLs and e-mail addresses within a string into clickable hyperlinks.
  1. function makeClickableLinks($text) {
  2. $text = eregi_replace('(((f|ht){1}tp://)[[email protected]:%_+.~#?&//=]+)',
  3. '<a href="1">1</a>', $text);
  4. $text = eregi_replace('([[:space:]()[{}])(www.[[email protected]:%_+.~#?&//=]+)',
  5. '1<a href="http://2">2</a>', $text);
  6. $text = eregi_replace('([_.0-9a-z-][email protected]([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})',
  7. '<a href="mailto:1">1</a>', $text);
  8.  
  9. return $text;
  10. }

以上是关于将字符串中的URL转换为超链接的主要内容,如果未能解决你的问题,请参考以下文章

PHP 将String中的URL转换为超链接

PHP 将String中的URL转换为超链接

PHP 将URL转换为超链接

PHP 将URL转换为超链接

将 URL 转换为 C# 字符串中的超链接的最简单方法?

Django 是不是有模板标签可以检测 URL 并将其转换为超链接?