PHP setrawcookie() Function

The setrawcookie() function defines a cookie (without URL encoding) to be sent along with the rest of the HTTP headers. A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, it will send the cookie too. With PHP, you can both create and retrieve cookie values. The name of the cookie is automatically assigned to a variable of the same name. For example, if a cookie was sent with the name "user", a variable is automatically created called $user, containing the cookie value.

bool setrawcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = FALSE [, bool $httponly = FALSE ]]]]]] )

setrawcookie() is exactly the same as setcookie() except that the cookie value will not be automatically urlencoded when sent to the browser.

Example -

The following example creates a cookie with PHP. The cookie is named "user" and the value will be "John Doe". The cookie value will not be URL encoded. The cookie will expire after 30 days (86400 * 30). Using "/", means that the cookie is available in entire website (otherwise, select the directory you prefer):

ParameterDescription
nameRequired. Specifies the name of the cookie
valueOptional. Specifies the value of the cookie
expireOptional. Specifies when the cookie expires. The value: time()+86400*30, will set the cookie to expire in 30 days. If this parameter is not set, the cookie will expire at the end of the session (when the browser closes)
pathOptional. Specifies the server path of the cookie. If set to "/", the cookie will be available within the entire domain. If set to "/php/", the cookie will only be available within the php directory and all sub-directories of php. The default value is the current directory that the cookie is being set in
domainOptional. Specifies the domain name of the cookie. To make the cookie available on all subdomains of example.com, set domain to ".example.com". Setting it to www.example.com will make the cookie only available in the www subdomain
secureOptional. Specifies whether or not the cookie should only be transmitted over a secure HTTPS connection. TRUE indicates that the cookie will only be set if a secure connection exists. Default is FALSE.

More Examples

Example -

Retrieve the value of the cookie named "user" (using the global variable $_COOKIE). Also use the isset() function to find out if the cookie exists:

Example -

To modify a cookie, just set (again) the cookie using the setrawcookie() function:

Example -

To delete a cookie, use the setrawcookie() function with an expiration date in the past:

Example -

Create a small script that checks whether cookies are enabled. First, try to create a test cookie with the setrawcookie() function, then count the $_COOKIE array variable: