有没有办法在 PHP 中检查 cookie 是否为 httponly
有没有办法检查 cookie 是否是 php 中的 httponly ?
Is there a way to check if the cookie is httponly in php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法检查 cookie 是否是 php 中的 httponly ?
Is there a way to check if the cookie is httponly in php?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我认为这是不可能的,因为此信息不包含在浏览器发送的原始标头中。事实上,将这样的标志发送回服务器是没有意义的,因为它们对服务器来说没有意义,只会浪费带宽。
I don't think that's possible, because this information is not included in the raw headers sent by the browser. In fact, it doesn't make sense to send flags like these back to the server, because they are meaningless to the server and only wastes bandwidth.
嗯,是的。只要您的 PHP 是 5.2.0 或较新。
Well, yes. You'll find it in the array returned by session_get_cookie_params, as long as your PHP is 5.2.0 or newer.