You are here

public function SetCookie::getExpires in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php \GuzzleHttp\Cookie\SetCookie::getExpires()

The UNIX timestamp when the cookie Expires

Return value

mixed

2 calls to SetCookie::getExpires()
SetCookie::isExpired in vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php
Check if the cookie is expired
SetCookie::__construct in vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php

File

vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php, line 211

Class

SetCookie
Set-Cookie object

Namespace

GuzzleHttp\Cookie

Code

public function getExpires() {
  return $this->data['Expires'];
}