Requests_Utility_CaseInsensitiveDictionary::offsetGet( string $key )
Get the value for the item
Description Description
Parameters Parameters
- $key
-
(string) (Required) Item key
Return Return
(string) Item value
Source 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]; }
Expand full source code Collapse full source code View on Trac