Requests_Utility_CaseInsensitiveDictionary::offsetExists( string $key )
Check if the given item exists
Description Description
Parameters Parameters
- $key
-
(string) (Required) Item key
Return Return
(boolean) Does the item exist?
Source Source
File: wp-includes/Requests/Utility/CaseInsensitiveDictionary.php
public function offsetExists($key) {
$key = strtolower($key);
return isset($this->data[$key]);
}
Expand full source code Collapse full source code View on Trac