PHP将所有网址转换为HTML链接

时间:2012-08-14 18:21:58

标签: php regex function preg-replace

  

可能重复:
  Replace URLs in text with HTML links

我正在传递包含多个网址的字符串变量,通过下面的函数只能通过正确的HTML链接获得相同的内容。

public function convertUrlsToLinks($text){
    return preg_replace( '@(?<![.*">])\b(?:(?:https?|ftp|file)://|[a-z]\.)[-A-Z0-9+&#/%=~_|$?!:,.]*[A-Z0-9+&#/%=~_|$]@i', '<a href="\0" target="_blank">\0</a>', $text );
}

根本不起作用。我错过了什么?

代码必须跳过现有链接,<img>的{​​{1}}值(或类似内容)。

1 个答案:

答案 0 :(得分:0)

假设您已经有一个html文档,我将URL的识别限制为

  • 不是以“
  • 开头
  • 以http或www
  • 开头

我提出了这样的解决方案:

$string = 'lorem ipsum www.foo.bar dolor sit <a href="http://fail.org">http://fail.org</a><img src="www.foo.bar"> amet http://abc.de.fg.com?bar=baz';
$rx = '%[^"](?P<link>(?:https?://|www\.)(?:[-_a-z0-9]+\.)+(?:[a-z]{2,4}|museum/?)(?:[-_a-z0-9/]+)?(?:\?[-_a-z0-9+\%=&]+)?(?!</a)(\W|$))%ui';
echo preg_replace_callback($rx, function($matches) {
    return '<a href="'.$matches['link'].'">'.$matches['link'].'</a>';
}, $string).PHP_EOL;

输出字符串是

lorem ipsum<a href="www.foo.bar ">www.foo.bar </a>dolor sit <a href="http://fail.org">http://fail.org</a><img src="www.foo.bar"> amet<a href="http://abc.de.fg.com?bar=baz">http://abc.de.fg.com?bar=baz</a>

正则表达式应该作为志愿者工作,你的示例字符串可以帮助