Requests_Cookie_Jar::offsetExists()
Check if the given item exists
{} It's a method of the class: Requests_Cookie_Jar{}
No Hooks.
Return
true|false
. Does the item exist?
Usage
$Requests_Cookie_Jar = new Requests_Cookie_Jar(); $Requests_Cookie_Jar->offsetExists( $key );
- $key(string) (required)
- Item key
Code of Requests_Cookie_Jar::offsetExists() Requests Cookie Jar::offsetExists WP 6.0
public function offsetExists($key) { return isset($this->cookies[$key]); }