CaseInsensitiveDictionary::offsetExists( $offset )


Source

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

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

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