PHP cookie 未设置
如果我运行这个:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须在执行任何其他产生输出的操作之前设置 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.
cookie 标头应设置在任何内容之前。删除
die()
函数,您应该会收到headers already sent
错误。The cookie headers should be set before anything. Remove the
die()
function and you should get aheaders already sent
error.