Problems deleting cookies, won't unset

后端 未结 18 740
死守一世寂寞
死守一世寂寞 2020-12-09 15:33

I\'ve tried searching the php manual and internet on how to delete cookies and I\'ve tried it the exact same way they all say:

setcookie(\"name\", \'\', 1);
         


        
18条回答
  •  不知归路
    2020-12-09 16:26

    set a cookie

    setcookie('cookiename', $cookie_value, time() + (86400 * 30), "/"); // 86400 = 1 day

    unset cookie

    setcookie('cookiename', '', time() - 3600, "/");

    No need to panic. Just copy function you use to set cookie and now minus the time. Do not get confuse, make it easy and clear.

提交回复
热议问题