Requests_Cookie_Jar::offsetExists( string $key )
Check if the given item exists
Parameters
- $key
-
(Required) Item key
Return
(boolean) Does the item exist?
Source
File: wp-includes/Requests/Cookie/Jar.php
public function offsetExists($key) {
return isset($this->cookies[$key]);
}