WpOrg\Requests\Cookie

Jar::offsetExists()publicWP 1.0ReturnTypeWillChange

Check if the given item exists

Method of the class: Jar{}

No Hooks.

Return

true|false. Does the item exist?

Usage

$Jar = new Jar();
$Jar->offsetExists( $offset );
$offset(string) (required)
Item key

Jar::offsetExists() code WP 6.6.2

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