无法删除php set cookie

前端之家收集整理的这篇文章主要介绍了无法删除php set cookie前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在PHP中通过这个调用设置了一个cookie
setcookie('alert_msg','you have the add badge');

我试过这样解开它

setcookie('alert_msg','');
setcookie('alert_msg',false);
setcookie('alert_msg',false,1);
setcookie('alert_msg',time()-3600);
setcookie('alert_msg','',1,'/');

并且它仍然不会取消$_COOKIE [‘alert_msg’]中的cookie值.

我试过Firefox和Chrome

代码示例:

if (isset($_COOKIE['alert_msg'])) {
    $this->set('alert_msg',$_COOKIE['alert_msg']);
    unset($_COOKIE['alert_msg']);
    setcookie('alert_msg','/');
}
检查cookie路径.

由于您没有将path参数传递给setcookie函数,因此在这种情况下,cookie将仅为当前目录设置并且可以使用,并且只能从该目录中取消设置.

可能的解决方案是将路径值传递为/.因此,cookie可以在应用程序的任何部分使用和取消设置.

原文链接:https://www.f2er.com/php/135271.html

猜你在找的PHP相关文章