WpOrg\Requests\Cookie
Jar::offsetExists()
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() Jar::offsetExists code WP 6.6.2
public function offsetExists($offset) { return isset($this->cookies[$offset]); }