WpOrg\Requests\Cookie

Jar::offsetUnsetpublicWP 1.0ReturnTypeWillChange

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() code WP 6.9.1

public function offsetUnset($offset) {
	unset($this->cookies[$offset]);
}