Interface CookieInterface
Cookie Interface
Constants summary
-
stringEXPIRES_FORMAT'D, d-M-Y H:i:s T' -
stringSAMESITE_LAX'Lax' -
stringSAMESITE_NONE'None' -
stringSAMESITE_STRICT'Strict' -
string[]SAMESITE_VALUES[self::SAMESITE_LAX, self::SAMESITE_STRICT, self::SAMESITE_NONE]
Method Summary
- getSameSite() public
Method Detail
getDomain() public
getDomain()
Get the domain attribute.
Returns
stringgetExpiresTimestamp() public
getExpiresTimestamp()
Get the timestamp from the expiration time
Timestamps are strings as large timestamps can overflow MAX_INT in 32bit systems.
Returns
string|nullThe expiry time as a string timestamp.
getExpiry() public
getExpiry()
Get the current expiry time
Returns
\DateTime|\DateTimeImmutable|nullTimestamp of expiry or null
getFormattedExpires() public
getFormattedExpires()
Builds the expiration value part of the header string
Returns
stringgetId() public
getId()
Get the id for a cookie
Cookies are unique across name, domain, path tuples.
Returns
stringgetName() public
getName()
Gets the cookie name
Returns
stringgetPath() public
getPath()
Get the path attribute.
Returns
stringgetSameSite() public
getSameSite()
getStringValue() public
getStringValue()
Gets the cookie value as a string.
This will collapse any complex data in the cookie with json_encode()
Returns
stringgetValue() public
getValue()
Gets the cookie value
Returns
string|arrayisExpired() public
isExpired(mixed $time)
Check if a cookie is expired when compared to $time
Cookies without an expiration date always return false.
Parameters
-
\DateTime|\DateTimeImmutable$time optional The time to test against. Defaults to 'now' in UTC.
Returns
boolisHttpOnly() public
isHttpOnly()
Check if the cookie is HTTP only
Returns
boolisSecure() public
isSecure()
Check if the cookie is secure
Returns
booltoHeaderValue() public
toHeaderValue()
Returns the cookie as header value
Returns
stringwithDomain() public
withDomain(mixed $domain)
Create a cookie with an updated domain
Parameters
-
string$domain Domain to set
Returns
staticwithExpired() public
withExpired()
Create a new cookie that will expire/delete the cookie from the browser.
This is done by setting the expiration time to 1 year ago
Returns
staticwithExpiry() public
withExpiry(mixed $dateTime)
Create a cookie with an updated expiration date
Parameters
-
\DateTime|\DateTimeImmutable$dateTime Date time object
Returns
staticwithHttpOnly() public
withHttpOnly(mixed $httpOnly)
Create a cookie with HTTP Only updated
Parameters
-
bool$httpOnly HTTP Only
Returns
staticwithName() public
withName(mixed $name)
Sets the cookie name
Parameters
-
string$name Name of the cookie
Returns
staticwithNeverExpire() public
withNeverExpire()
Create a new cookie that will virtually never expire.
Returns
staticwithPath() public
withPath(mixed $path)
Create a new cookie with an updated path
Parameters
-
string$path Sets the path
Returns
staticwithSameSite() public static
withSameSite(mixed $sameSite)
Parameters
-
mixed$sameSite
withSecure() public
withSecure(mixed $secure)
Create a cookie with Secure updated
Parameters
-
bool$secure Secure attribute value
Returns
staticwithValue() public
withValue(mixed $value)
Create a cookie with an updated value.
Parameters
-
string|array$value Value of the cookie to set
Returns
static
© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/3.9/interface-Cake.Http.Cookie.CookieInterface.html