PHP:浏览器中存在 Cookie,但收到索引未定义错误

发布于 2024-12-04 06:04:40 字数 396 浏览 0 评论 0原文

我在代码中正确设置了 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:

enter image description here

Any and all assistance is appreciated...this is driving me insance. Thanks!

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

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

发布评论

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

评论(1

属性 2024-12-11 06:04:40

我看到 cookie 将“路径”属性设置为服务器上的某个目录。路径限制了范围。当未明确指定路径时,浏览器使用脚本 uri。最有可能的是,读取 cookie 的脚本与设置 cookie 的脚本位于不同的位置。尝试将路径设置为 / 例如

$expire = time()+60*60*24*30;          
setcookie("userid", 27, $expire,'/');

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

$expire = time()+60*60*24*30;          
setcookie("userid", 27, $expire,'/');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文