Requests_Utility_CaseInsensitiveDictionary::offsetGet( string $key )
Get the value for the item
Description
Parameters
- $key
-
(string) (Required) Item key
Return
(string) Item value
Source
File: wp-includes/Requests/Utility/CaseInsensitiveDictionary.php
public function offsetGet($key) { $key = strtolower($key); if (!isset($this->data[$key])) { return null; } return $this->data[$key]; }