Tools, FAQ, Tutorials:
Removing a Cookie in PHP
How To Remove a Cookie in PHP?
✍: FYIcenter.com
Once a cookie is sent from the server to the browser, there is no direct way for the server to ask the browser to remove the cookie. But you can use the setcookie() function to send the same cookie to browser with a negative expiration time, which will cause the browser to expire (remove) the cookie immediately. The next sample PHP page will let you remove "CouponNumber" and CouponValue" persisted by the previous tutorial exercise:
<?php
setcookie("CouponNumber","",time()-1);
setcookie("CouponValue","",time()-1);
print("<pre>\n");
print("2 cookies were delivered with past times.\n");
$count = count($_COOKIE);
print("$count cookies received.\n");
foreach ($_COOKIE as $name => $value) {
print " $name = $value\n";
}
print("</pre>\n");
?>
Open your browser to visit this page: http://localhost/removing_cookies.php. You will see:
2 cookies were delivered with past times. 2 cookies received. CouponNumber = 07470433 CouponValue = 100.00
Click the refresh button, you will see:
2 cookies were delivered with past times. 0 cookies received.
As you can see, both cookies are removed.
⇒ Domain and Path Attributes for Cookies in PHP
⇐ Testing Persistent Cookies in PHP
2016-11-03, ∼2200🔥, 0💬
Popular Posts:
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...