Requests_Utility_CaseInsensitiveDictionary::offsetUnset( string $key )

Unset the given header


Description Description


Parameters Parameters

$key

(string) (Required)


Top ↑

Source Source

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

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

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.