PHP cookie 未设置

发布于 2024-12-11 02:09:02 字数 231 浏览 0 评论 0原文

如果我运行这个:

$today = date('Y-m-d H:i:s');
$expire = time()+(20*60);
$ssid = md5(rand()*1000000000);
setcookie('id', $ssid, $expire) or die("couldn't set cookie. login failed."); 

它总是会死掉。有什么想法吗?

if I run this:

$today = date('Y-m-d H:i:s');
$expire = time()+(20*60);
$ssid = md5(rand()*1000000000);
setcookie('id', $ssid, $expire) or die("couldn't set cookie. login failed."); 

It always dies. Any ideas why?

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

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

发布评论

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

评论(2

甚是思念 2024-12-18 02:09:02

您必须在执行任何其他产生输出的操作之前设置 cookie。一旦发送了 HTTP 标头,再设置 cookie 就为时已晚。

You must set the cookie before doing anything else that produces output. Once the HTTP headers are sent, it's too late to set the cookie.

べ繥欢鉨o。 2024-12-18 02:09:02

cookie 标头应设置在任何内容之前。删除 die() 函数,您应该会收到 headers already sent 错误。

The cookie headers should be set before anything. Remove the die() function and you should get a headers already sent error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文