Remove a cookie

后端 未结 22 1535
没有蜡笔的小新
没有蜡笔的小新 2020-11-22 16:16

When I want to remove a Cookie I try

unset($_COOKIE[\'hello\']);

I see in my cookie browser from firefox that the cookie still exists. How

22条回答
  •  孤独总比滥情好
    2020-11-22 16:27

    When you enter 0 for time, you mean "now" (+0s from now is actually now) for the browser and it deletes the cookie.

    setcookie("key", NULL, 0, "/");
    

    I checked it in chrome browser that gives me:

    Name: key
    Content: Deleted
    Created: Sunday, November 18, 2018 at 2:33:14 PM
    Expires: Sunday, November 18, 2018 at 2:33:14 PM
    

提交回复
热议问题