Home >Backend Development >PHP Tutorial >PHP determines whether the request is HTTPS

PHP determines whether the request is HTTPS

WBOY
WBOYOriginal
2016-08-08 09:24:401451browse

Some time ago, the company needed to be compatible with users using HTTPS websites, so it was necessary to dynamically determine whether the request initiated by the user was https. The code is as follows:

if ($_SERVER["HTTPS"] != "on"){
    $http = 'http';
}else{
    $http = 'https';
}

The above introduces PHP to determine whether the request is HTTPS, including the relevant aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn