Summery Summery
Check if the given item exists
Syntax Syntax
Parameters Parameters
- $key
-
(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]);
}