CaseInsensitiveDictionary::offsetExists( $offset )

Source

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

	return isset($this->data[$offset]);
}

User Contributed Notes

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