WpOrg\Requests\Cookie
Jar::offsetUnset
Unset the given header
Method of the class: Jar{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Jar = new Jar(); $Jar->offsetUnset( $offset );
- $offset(string) (required)
- The key for the item to unset.
Jar::offsetUnset() Jar::offsetUnset code WP 6.9.1
public function offsetUnset($offset) {
unset($this->cookies[$offset]);
}