Home  >  Article  >  Backend Development  >  How to set cookie expiration time in php

How to set cookie expiration time in php

王林
王林Original
2020-08-14 14:59:403263browse

How to set cookie expiration time in php: You can use the setcookie() function to set it. The specific usage method is: [setcookie ("mycookie", "123", time() 3600*24);], which means that the cookie will expire after one day.

How to set cookie expiration time in php

#Can be set using the setcookie function.

(Recommended tutorial: php graphic tutorial)

Grammar:

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

Parameter introduction:

  • name Set the name of the cookie. The value of this parameter must be set.

  • value Set the cookie value. This parameter must be set.

  • expire Optional. Set the validity period of the cookie, usually a timestamp.

  • path Optional. Set the server path for cookies.

  • domain Optional. Domain name to set cookie.

  • secure Optional. Specifies whether to transmit cookies through a secure HTTPS connection

(Video tutorial: php video tutorial)

Example:

Set the cookie to expire after one day

setcookie ("mycookie", "123", time()+3600*24);

time() represents the timestamp of the current time, time() 3600*24 represents the timestamp of the next 24 hours.

Similarly, set the cookie to expire after one year

setcookie ("mycookie", "123", time()+3600*24*365);

The above is the detailed content of How to set cookie expiration time in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn