A clean way to delete a cookie is to clear both of $_COOKIE value and browser cookie file :
if(isset($_COOKIE['key'])) {
unset($_COOKIE['key']);
setcookie('key', '', time() - 3600); // empty value and old timestamp
}
if(isset($_COOKIE['key'])) {
unset($_COOKIE['key']);
setcookie('key', '', time() - 3600); // empty value and old timestamp
}
No comments:
Post a Comment