PHP:浏览器中存在 Cookie,但收到索引未定义错误
我在代码中正确设置了 cookie,例如:
$expire = time()+60*60*24*30;
setcookie("userid", 27, $expire);
但是当我尝试访问 cookie 以使用它的值 ($userid = $_COOKIE['userid'];
) 时,我保留接收,“未定义的索引:userid”
如果我检查浏览器(在本例中为 Firefox)的 cookie,我可以清楚地看到我的 cookie 在那里并设置:
感谢任何和所有帮助......这让我发疯。谢谢!
I'm setting my cookie properly in my code, for example:
$expire = time()+60*60*24*30;
setcookie("userid", 27, $expire);
But then when I attempt to access the cookie to use it's value ($userid = $_COOKIE['userid'];
), I keep receiving, "undefined index: userid"
If I check my browser's (in this case, Firefox) cookies I can clearly see that my cookie is there and set:
Any and all assistance is appreciated...this is driving me insance. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到 cookie 将“路径”属性设置为服务器上的某个目录。路径限制了范围。当未明确指定路径时,浏览器使用脚本 uri。最有可能的是,读取 cookie 的脚本与设置 cookie 的脚本位于不同的位置。尝试将路径设置为 / 例如
I see that cookie has 'path' attribute set to some directory on the server. Path limits the scope. When path is not explicitly specified browser uses script uri. Most likely your script which reads the cookie is at different location then the one which sets cookie. Try setting path to / eg