PHP URL PROTOCOL
From w3cyberlearnings
Contents |
PHP CURRENT URL Protocol
Get current URL Protocol.
Example 1
echo $_SERVER['SERVER_PROTOCOL'];
Output
HTTP/1.1
Example 2
Check for SSL Certificate of a domain name.
$protocol = strpos(strtolower($_SERVER['SERVER_PROTOCOL']),'https') === TRUE ? 'https' : 'http'; echo $protocol;
Output
http
Related Links
Manage URL