WpOrg\Requests\Cookie

Jar::offsetUnset()publicWP 1.0ReturnTypeWillChange

Unset the given header

Method of the class: Jar{}

No Hooks.

Return

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.6.2

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