作者 刘锟

update

... ... @@ -661,6 +661,10 @@ function check_remote_url_down($url){
return false;
}
if(substr($url,0,2) == '//'){
return false;
}
$arr = parse_url($url);
$scheme = $arr['scheme'] ?? '';
$host = $arr['host'] ?? '';
... ...