duanci1939 2014-09-04 10:16
浏览 65
已采纳

为什么我的cookie重置时使用php setcookie设置另一个

I've found that if I set a cookie with no expiration value and then create another cookie, the first cookie seems to be destroyed. Is this because a new session is created or is it because it is another request?

I've resolved my 'problem' by actually setting an expiration time, but I'm just curious to know what is actually happening when the second cookie is being created.

setcookie('cookieA', 'stuff', null, '/');

setcookie('cookieB', 'stuff', time() + 1200, '/');
  • 写回答

1条回答 默认 最新

  • duanchensou8685 2014-09-04 10:33
    关注

    $expire_time has it's own role in function setcookie and if it's less than now the cookie is deleted. There's no way not to set an expiration time or set it to null. It's simply a specification of cookies to achieve an expiration time (http://www.faqs.org/rfcs/rfc2965.html).


    If you want the cookie to last forever, just set it to enormously huge number
    Good Luck. :)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部