Requests_Cookie_Jar::offsetExists( string $key )

Check if the given item exists


Description


Parameters

$key

(string) (Required) Item key


Top ↑

Return

(boolean) Does the item exist?


Top ↑

Source

File: wp-includes/Requests/Cookie/Jar.php

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