Requests_Utility_CaseInsensitiveDictionary::offsetExists()
最后更新于:2021-11-26 04:09:00
Requests_Utility_CaseInsensitiveDictionary::offsetExists( string$key)Check if the given item exists
参数
- $key
-
(string) (Required) Item key
响应
(boolean) Does the item exist?
源文件
文件: gc-includes/Requests/Utility/CaseInsensitiveDictionary.php
public function offsetExists($key) {
$key = strtolower($key);
return isset($this->data[$key]);
}