Problems deleting cookies, won't unset

后端 未结 18 704
死守一世寂寞
死守一世寂寞 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:23

    Happens to me as well one in ten times though. I guess its a problem with the way we code.

    This is my code

    setcookie("token", "", time() - 36000, "/");
    

提交回复
热议问题