Requests_Cookie::is_expired() public WP 1.0
Check if a cookie is expired.
Checks the age against $this->reference_time to determine if the cookie is expired.
{} Это метод класса: Requests_Cookie{}
Хуков нет.
Возвращает
true/false. True if expired, false if time is valid.
Использование
$Requests_Cookie = new Requests_Cookie(); $Requests_Cookie->is_expired();
Код Requests_Cookie::is_expired() Requests Cookie::is expired WP 5.6.2
public function is_expired() {
// RFC6265, s. 4.1.2.2:
// If a cookie has both the Max-Age and the Expires attribute, the Max-
// Age attribute has precedence and controls the expiration date of the
// cookie.
if (isset($this->attributes['max-age'])) {
$max_age = $this->attributes['max-age'];
return $max_age < $this->reference_time;
}
if (isset($this->attributes['expires'])) {
$expires = $this->attributes['expires'];
return $expires < $this->reference_time;
}
return false;
}