如何删除/取消设置php上的cookie?

问题描述:

我想要取消设置/删除我现有的cookie:

I want to unset/delete my existing cookie with this:

setcookie ("user", "", time()-1); 
unset($user);

但不能删除或取消设置Cookie。那么什么是问题?

But cookies can not be deleted or unset. So what is problem?

您可以通过这种方式取消设置cookie只有-1无效

you can unset cookies this way only may -1 not work

试试这个

setcookie ("user", "", time() - 3600);