WpOrg\Requests\Cookie
Jar::offsetExists
Check if the given item exists
Method of the class: Jar{}
No Hooks.
Returns
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.8.1
public function offsetExists($offset) { return isset($this->cookies[$offset]); }