Delete cookie from browser?

后端 未结 6 1670
野的像风
野的像风 2021-02-19 04:03

Is there any way of instructing a web browser to completely delete one\'s cookie set with PHP?

I do not want to expiry it or wait for the brows

6条回答
  •  清酒与你
    2021-02-19 04:33

    Try something like this to delete all cookies:

    foreach ($_COOKIE as $name => $value) {
        setcookie($name, '', 1);
    }
    

    The value 1 is the expire value and it represents one second after the begin of the Unix time epoch. So it’s always already expired.

提交回复
热议问题