WpOrg\Requests\Utility

CaseInsensitiveDictionary::offsetUnset()publicWP 1.0ReturnTypeWillChange

Unset the given header

Метод класса: CaseInsensitiveDictionary{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$CaseInsensitiveDictionary = new CaseInsensitiveDictionary();
$CaseInsensitiveDictionary->offsetUnset( $offset );
$offset(строка) (обязательный)
The key for the item to unset.

Код CaseInsensitiveDictionary::offsetUnset() WP 6.6.2

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

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