源码技术 发表于 2024-8-31 15:20:28

php源码:自动识别文本中的链接


function text2links($str='') {
if(!preg_match('/(http|www\.|@)/i', $str)) { return $str; }
$lines = explode("<br />", $str); $new_text = '';
while (list($k,$l) = each($lines)) {
// replace links:
    $l = preg_replace("/([ \t]|^)www\./i", "\\1http://www.", $l);

    $l = preg_replace("/([ \t]|^)ftp\./i", "\\1ftp://ftp.", $l);

    $l = preg_replace("/(http:\/\/[^ )!]+)/i", "<a href=\"\\1\">\\1</a>", $l);

    $l = preg_replace("/(https:\/\/[^ )!]+)/i", "<a href=\"\\1\">\\1</a>", $l);

    $l = preg_replace("/(ftp:\/\/[^ )!]+)/i", "<a href=\"\\1\">\\1</a>", $l);

    $l = preg_replace("/([-a-z0-9_]+(\.+)*@(+(\.+)+))/i", "<a href=\"mailto:\\1\">\\1</a>", $l);

    $new_text .= $l.'<br />';
}

return $new_text;
}



页: [1]
查看完整版本: php源码:自动识别文本中的链接