CaseInsensitiveDictionary::offsetUnset( $offset )

Source

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

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

User Contributed Notes

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