Requests_Utility_CaseInsensitiveDictionary::offsetSet( string $key, string $value )

Set the given item

Parameters

$key

(string) (Required) Item name

$value

(string) (Required) Item value

Source

File: wp-includes/Requests/Utility/CaseInsensitiveDictionary.php

public function offsetSet($key, $value) {
		if ($key === null) {
			throw new Requests_Exception('Object is a dictionary, not a list', 'invalidset');
		}

		$key              = strtolower($key);
		$this->data[$key] = $value;
	}

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_utility_caseinsensitivedictionary/offsetset