CaseInsensitiveDictionary::offsetGet( $offset )

Source

public function offsetGet($offset) {
	if (is_string($offset)) {
		$offset = strtolower($offset);
	}

	if (!isset($this->data[$offset])) {
		return null;
	}

	return $this->data[$offset];
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.