Home > Backend Development > PHP Tutorial > 如何使用php判断服务器是否是HTTPS连接_php技巧

如何使用php判断服务器是否是HTTPS连接_php技巧

WBOY
Release: 2016-05-17 08:57:04
Original
1282 people have browsed it
复制代码 代码如下:

if ($_SERVER['HTTPS'] != "on") {
 echo "This is not HTTPS";
}else{
 echo "This is HTTPS";
}if ($_SERVER['HTTPS'] != "on") {
 echo "This is not HTTPS";
}else{
 echo "This is HTTPS";
}

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template