Requests_Utility_CaseInsensitiveDictionary::offsetUnset( string $key )

Unset the given header


Description


Parameters

$key

(string) (Required)


Top ↑

Source

File: wp-includes/Requests/Utility/CaseInsensitiveDictionary.php

	public function offsetUnset($key) {
		unset($this->data[strtolower($key)]);
	}