我有以下脚本超链接我网站上发布的任何链接:
$text = trim($text);
while ($text != stripslashes($text)) { $text = stripslashes($text); }
$text = strip_tags($text,"<b><i><u>");
$text = preg_replace("/(?<!http:\/\/)www\./","http://www.",$text);
$text = preg_replace( "/((http|ftp)+(s)?:\/\/[^<>\s]+)/i", "<a href=\"\\0\" target=\"_new\">\\0</a>",$text);
但是,由于某种原因,如果我添加一个https://www.test.com
链接,它最终会像这样显示 -https://http://www.test.com
我做错了什么?我怎样才能使它也可以与 https 链接一起使用?它适用于 http 链接。谢谢!:-)