sweat.gif
还是有可能网址中含有http这四个字符的啊
lol.gif
重写了一下,应该没问题了:
lol.gif
$_POST["Url"]=strtolower($_POST["Url"]);
$_POST["Url"]=trim($_POST["Url"]);
if(substr_count($_POST["Url"],'http://')==1 ){
$_POST["Url"]=str_ireplace('http://','',$_POST["Url"]);
$_POST["Url"]='://'.$_POST["Url"];
}else if(substr_count($_POST["Url"],'https://')==1 ){
$_POST["Url"]=str_ireplace('https://','',$_POST["Url"]);
$_POST["Url"]='s://'.$_POST["Url"];
}else{
$_POST["Url"]='://'.$_POST["Url"];
}
victory.gif
victory.gif
页:
1
[2]