WpOrg\Requests\Cookie

Jar::offsetExists()publicWP 1.0ReturnTypeWillChange

Check if the given item exists

Метод класса: Jar{}

Хуков нет.

Возвращает

true|false. Does the item exist?

Использование

$Jar = new Jar();
$Jar->offsetExists( $offset );
$offset(строка) (обязательный)
Item key

Код Jar::offsetExists() WP 6.6.2

public function offsetExists($offset) {
	return isset($this->cookies[$offset]);
}