how to unset cookie in PHP?

前端 未结 6 455
旧时难觅i
旧时难觅i 2020-12-02 01:31

I need to figure out how to unset this cookie. Everything I tried so far has failed.

This is how I am currently unsetting it and it doesn\'t seem to work.

         


        
6条回答
  •  一生所求
    2020-12-02 02:25

    use this code

      setcookie("CookieName", "", time()-(60*60*24), "/");
    

    works everytime for me in every website

提交回复
热议问题