Home Backend Development PHP Problem How to use setcookie() in php to set cookies to never expire

How to use setcookie() in php to set cookies to never expire

Sep 30, 2021 pm 04:39 PM
php

In PHP, you only need to set the value of the third parameter of the setcookie() function to always be greater than the current system time. The syntax is "setcookie("cookie_name", "cookie_value", time() 99*365* 24*3600);".

How to use setcookie() in php to set cookies to never expire

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

When setting cookies in PHP, if it is not specified Validity period, the life cycle is the period of the browser, which can also be called not saving, and it will disappear after the browser is closed and opened again.

If you set a longer validity period for the cookie (always greater than the current system time), you can make the cookie never expire. The third parameter $expire of the setcookie() function is used to set the cookie validity period. For example, the following code:

1

setcookie("cookie_name", "cookie_value", time() + 99 * 365 * 24 * 3600);

Copy after login

Description:

setcookie() The syntax format of the function is as follows:

1

setcookie(string $name [, string $value = "" [, int $expire = 0 [, string $path = "" [, string $domain = "" [, bool $secure = false [, bool $httponly = false ]]]]]])

Copy after login

The parameter description is as follows:

  • $name: Set the name of the cookie;
  • $value: Optional parameter, used to set the value of the cookie. The value of $value can be obtained in the form of $_COOKIE['$name'];
  • $expire: optional parameter, used to set the expiration time of the cookie. This time is in the form of a Unix timestamp. If set to zero or omitted, the cookie will expire at the end of the session (that is, when the browser is closed);
  • $path: optional parameter, used to set the valid server path of the cookie. When set to '/', the cookie is valid for the entire domain name $domain. If set to '/foo/', the cookie is only valid for the /foo/ directory and its subdirectories in $domain (such as /foo/bar/). The default value is the directory when setting the cookie;
  • $domain: optional parameter, used to set the effective domain name/subdomain name of the cookie. Setting it to a subdomain (for example, 'c.biancheng.net') will make the cookie valid for this subdomain and its third-level domain (for example, php.c.biancheng.net). To make the cookie valid for the entire domain name (including all its subdomains), just set it to the domain name (for example, 'biancheng.net');
  • $secure: optional parameter, used to set this cookie Whether to only pass it to the client over a secure HTTPS connection. When set to TRUE, the cookie will only be set when a secure connection exists;
  • $httponly: Optional parameter, when set to TRUE, the cookie can only be accessed through the HTTP protocol, which means that the cookie cannot be accessed through JavaScript such as scripting language access. Setting this parameter can effectively reduce the risk of XSS attacks.

time()Returns the current time in seconds since the Unix epoch (January 1 1970 00:00:00 GMT).

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to use setcookie() in php to set cookies to never expire. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

CakePHP Date and Time

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

CakePHP Project Configuration

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

CakePHP File upload

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

CakePHP Routing

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

Discuss CakePHP

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP Quick Guide

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

How To Set Up Visual Studio Code (VS Code) for PHP Development

See all articles