Requests_Utility_CaseInsensitiveDictionary::offsetExists( string $key )

Check if the given item exists


Description Description


Parameters Parameters

$key

(string) (Required) Item key


Top ↑

Return Return

(boolean) Does the item exist?


Top ↑

Source Source

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

	public function offsetExists($key) {
		$key = strtolower($key);
		return isset($this->data[$key]);
	}

Top ↑

User Contributed Notes User Contributed Notes

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