Requests_Cookie_Jar::offsetUnset() WordPress Method
The offsetUnset() method is a member of the Requests_Cookie_Jar class. It is used to remove a cookie from the cookie jar by its offset.
Requests_Cookie_Jar::offsetUnset( string $key ) #
Unset the given header
Contents
Parameters
- $key
(string)(Required)
Source
File: wp-includes/Requests/Cookie/Jar.php
public function offsetUnset($key) { unset($this->cookies[$key]); }
Expand full source codeCollapse full source codeView on TracView on GitHub