PHP 将字符串转换为可点击的网址

Posted

tags:

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

function convertToURL($text) {
$text = preg_replace("/([a-zA-Z]+:\/\/[a-z0-9\_\.\-]+"."[a-z]{2,6}[a-zA-Z0-9\/\*\-\_\?\&\%\=\,\+\.]+)/"," <a href=\"$1\" target=\"_blank\">$1</a>", $text);
$text = preg_replace("/[^a-z]+[^:\/\/](www\."."[^\.]+[\w][\.|\/][a-zA-Z0-9\/\*\-\_\?\&\%\=\,\+\.]+)/"," <a href="\\" target="\">$1</a>", $text);
$text = preg_replace("/([\s|\,\>])([a-zA-Z][a-zA-Z0-9\_\.\-]*[a-z" . "A-Z]*\@[a-zA-Z][a-zA-Z0-9\_\.\-]*[a-zA-Z]{2,6})" . "([A-Za-z0-9\!\?\@\#\$\%\^\&\*\(\)\_\-\=\+]*)" . "([\s|\.|\,\<])/i", "$1<a href=\"mailto:$2$3\">$2</a>$4",
$text);
return $text;
}

以上是关于PHP 将字符串转换为可点击的网址的主要内容,如果未能解决你的问题,请参考以下文章

PHP 自动将URL转换为可点击超链接(锚标记)的功能

将时间戳转换为可读的日期/时间 PHP

如何将字符串中的 URL 呈现为可点击的超链接?

PHP 将日期/时间转换为可读格式。

将 unsigned char* 转换为可读字符串 & 这个函数在做啥

如何将字符串转换为可读流?