Requests_Utility_CaseInsensitiveDictionary::offsetSet() WordPress Method

The offsetSet() method is part of the Requests_Utility_CaseInsensitiveDictionary class, which provides a case-insensitive dictionary for storing data. The offsetSet() method allows you to set a value for a key in the dictionary. The key can be any case, but the value will be stored in lowercase.

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

Set the given item


Parameters

$key

(string)(Required)Item name

$value

(string)(Required)Item value


Top ↑

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;
	}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.