Home  >  Article  >  php教程  >  如何使用php判断服务器是否是HTTPS连接

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

WBOY
WBOYOriginal
2016-06-13 11:43:21917browse

复制代码 代码如下:


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";
}


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