你好我正在開發一個腳本,我需要一些幫助。PHP檢查一個網站是否使用HTTPS
我的問題是我想補充一點,將覈實,如果一個網站使用HTTPS或HTTP的功能。
我的代碼...
$domain = trim(_GET("domain", "", true));
if(substr($domain, 0, 7) == "http://")
$domain = substr_replace($domain, "", 0, 7);
$url = "http://" . $domain;
我想$url
成爲http://
或https://
,例如,當我在我的輸入鍵入文本google.com
,使其https://google.com
,而不是http://google.com
什麼是您的問題或任務離子?這個代碼不工作嗎?如果不是,它做什麼? – deceze
我的代碼是HTTP唯一的工作:如果我輸入google.com例如//(不包含http://或www。)正在此字符串$ URL = HTTP:// gooogle.com,但正確的鏈接應該是$ URL = https://開頭google.com – user3810205