setcookie() FunctionSends an HTTP cookie to the client.
Cookie is a variable sent by the server to the browser. Cookies are typically small text files that a server embeds on a user's computer. This cookie is sent each time the computer requests a page through the browser.
The name of the cookie is specified as a variable of the same name. For example, if the cookie being sent is named "name", a variable named $user is automatically created containing the cookie's value.
The cookie must be assigned before any other output is sent.
If successful, the function returns true, otherwise it returns false.
php setcookieParameters of the functionDescription
Usage:
setcookie(name,value,expire,path,domain,secure)
Parameter Description
name is required. Specifies the name of the cookie.
value required. Specifies the value of the cookie.
expire Optional. Specifies the validity period of the cookie.
path Optional. Specifies the server path for cookies.
domain Optional. Specifies the domain name for the cookie.
secure Optional. Specifies whether cookies are transmitted over a secure HTTPS connection.
Example
Set and send cookie:
<?php $value = "my cookie value"; // 发送一个简单的 cookie setcookie("TestCookie",$value); ?> <html> <body>
<?php $value = "my cookie value"; // 发送一个 24 小时候过期的 cookie setcookie("TestCookie",$value, time()+3600*24); ?> <html> <body>
The above is the detailed content of Introduction to the use of php setcookie() function. For more information, please follow other related articles on the PHP Chinese website!