PHP 中跨 HTTP 和 HTTPS 的 Cookie
如何在 PHP 中设置一个在 HTTP 和 HTTPS 中都可读的 cookie?
如果这不可能,可以做什么?设置两个cookie?
How can I set a cookie in PHP that is readable both in HTTP and HTTPS?
If this isn't possible, what can be done? Set two cookies?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,同一 URL 上的 http 和 https 都可以读取 cookie。
但是,服务器可以选择在设置 cookie 时指定“安全”标志,这告诉浏览器仅通过安全通道(例如 SSL 连接)发送它。
在这种情况下,cookie 将仅通过 https 发送。未标记为安全的 cookie 将通过 http 和 https 发送。
By default, a cookie can be read by both http and https at the same URL.
However, a server can optionally specify the 'secure' flag while setting a cookie this tells the browser to only send it over a secure channel, such as an SSL connection.
In this case the cookie will only be sent over https. A cookie not marked as secure will be sent over both http and https.
假设您的域名除了资源类型之外保持不变,则可以从 HTTP 和 HTTPS 读取 PHP(或任何语言)中的 cookie。
例如:
在此示例中,cookie 可以相互读取。
Assuming your domain name remains the same except for the resource type, cookies in PHP (or any language) can be read from both HTTP and HTTPS.
e.g.:
In this example, the cookies will be readable from each other.