Property | Type | Description | |
---|---|---|---|
$domain | domain of the cookie | ||
$expire | the timestamp at which the cookie expires. This is the server timestamp. Defaults to 0, meaning "until the browser is closed". | ||
$httpOnly | whether the cookie should be accessible only through the HTTP protocol. By setting this property to true, the cookie will not be accessible by scripting languages, such as JavaScript, which can effectively help to reduce identity theft through XSS attacks. | ||
$name | name of the cookie | ||
$path | the path on the server in which the cookie will be available on. The default is '/'. | ||
$secure | whether cookie should be sent via secure connection | ||
$value | value of the cookie |
Method | Description | |
---|---|---|
__toString ( ) : string | Magic method to turn a cookie object into a string without having to explicitly access [[value]]. |
public __toString ( ) : string | ||
return | string | The value of the cookie. If the value property is null, an empty string will be returned. |
public $expire |
public $httpOnly |
public $path |