public function Cookie::getExpiresTime in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/http-foundation/Cookie.php \Symfony\Component\HttpFoundation\Cookie::getExpiresTime()
- 8 vendor/symfony/browser-kit/Cookie.php \Symfony\Component\BrowserKit\Cookie::getExpiresTime()
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Cookie.php \Symfony\Component\HttpFoundation\Cookie::getExpiresTime()
Gets the time the cookie expires.
Return value
int
1 call to Cookie::getExpiresTime()
- Cookie::__toString in vendor/
symfony/ http-foundation/ Cookie.php - Returns the cookie as a string.
File
- vendor/
symfony/ http-foundation/ Cookie.php, line 146
Class
- Cookie
- Represents a cookie.
Namespace
Symfony\Component\HttpFoundationCode
public function getExpiresTime() {
return $this->expire;
}