Get the value for the item
(string) (Required) Item key
(string) Item value
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]; }
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_utility_caseinsensitivedictionary/offsetget