Open In App

Remove a cookie using PHP

Last Updated : 31 Jul, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Cookie: A Cookie is a small file sent by the server to preserve stateful information for a user. It is stored on the client’s computer and sent to the server every time the user makes a request for the same page.

To create cookies you can set the cookie by using the setcookie() function of the PHP.

Syntax: 

setcookie(name, value, expire, path, domain, secure, httponly)

Parameters: This function accepts seven parameters as mentioned above and described below:  

  • name: The name of the cookie.
  • value: The value you want to store in the cookie.
  • expire-time: It is the number of seconds until the cookie will be kept on the user’s machine by the browser. After that, it will automatically be deleted. If not set then the cookie will be preserved by browser until it is open.
  • path: It determines for which directories cookie will valid. If you want to access it in all directories then put it on “/”, i.e. the cookie is accessible in the entire domain. Otherwise, the cookie will be limited to the subdirectory.
  • domain: It is used to define the access hierarchy for the cookie. For example, if you set this to “yourdomain.com”, it will be accessible via all the subdomains also. but if it set to “sub.yourdomain.com”, it will be accessible by “sub.yourdomain.com” and its subdomains.
  • secure: It determines how the cookie will be sent, via HTTP or HTTPS. If set to true then the cookie will be sent via HTTPS only, otherwise, it will be sent via HTTP. Its default value is false.
  • httponly: If it set to true, the cookie is accessible only either via HTTP or HTTPS. That means the client code (like Javascript) can not access the cookie.

Out of the above parameters, only the first two parameters are mandatory. Others are optional parameters. If you want to preserve the cookie, then provide the expire-time parameter.

Note: It is stored in the global array named $_COOKIE.

Creating a Cookie: As mentioned earlier, we can set cookies by using the function setcookie().  

  • Example: 

PHP




<!DOCTYPE html>
  
<?php
$cookie_name = "gfg";
$cookie_value = "GeeksforGeeks";
  
// 86400 = 1 day
setcookie($cookie_name, $cookie_value, time() + (86400 * 15), "/"); 
?>
  
<html>
<body>
    <?php
    if(!isset($_COOKIE[$cookie_name])) {
          echo "Cookie named '" . $cookie_name . "' is not set!";
    
    else {
          echo "Cookie '" . $cookie_name . "' is set!<br>";
          echo "Value is: " . $_COOKIE[$cookie_name];
    }
    ?>
  
</body>
  
</html>


  • Output: 
Cookie 'gfg' is set!
Value is: GeeksforGeeks

Deleting Cookie: There is no special dedicated function provided in PHP to delete a cookie. All we have to do is to update the expire-time value of the cookie by setting it to a past time using the setcookie() function. A very simple way of doing this is to deduct a few seconds from the current time. 

  • Syntax: 
setcookie(name, time() - 3600);
  • Example: 

PHP




<!DOCTYPE html>
<?php
  
// Set the expiration date to one hour ago
setcookie("gfg", "", time() - 3600);
?>
  
<html>
  
<body>
  
    <?php
    echo "Cookie 'gfg' is deleted.";
    ?>
  
</body>
  
</html>


  • Output: 
Cookie 'gfg' is deleted.

Note: The setcookie() function must appear before the <html> tag.
 

PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads