php - 确定流量是通过 https 还是 http 的方法

发布于 2024-10-22 02:51:12 字数 123 浏览 0 评论 0原文

我需要一个简单的函数来确定它是使用 https 还是 http。我在想 - 有没有办法让 php 访问端口#?因此,如果是 443,我知道它是安全的,如果是 80,我知道它是正常的。

还有哪些其他方法可以确定这一点?

I need a simple function to decide if the it's using https or http. I was thinking - is there a way for php to access the port #? So if it's 443 I know it's secure, and if it's 80 I know it's normal.

What other ways are there of determining this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哆兒滾 2024-10-29 02:51:12
<?php 
if($_SERVER['HTTPS']){ 
  //secure 
}else{ 
  // not secure
} 
?> 

然而有些服务器没有设置HTTPS,所以在最坏的情况下:

<?php
if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) {
  // secure
}
?>
<?php 
if($_SERVER['HTTPS']){ 
  //secure 
}else{ 
  // not secure
} 
?> 

However some servers don't set HTTPS, so in the worst case:

<?php
if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) {
  // secure
}
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文