WpOrg\Requests\Utility
CaseInsensitiveDictionary::offsetUnset
Unset the given header
Метод класса: CaseInsensitiveDictionary{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$CaseInsensitiveDictionary = new CaseInsensitiveDictionary(); $CaseInsensitiveDictionary->offsetUnset( $offset );
- $offset(строка) (обязательный)
- The key for the item to unset.
Код CaseInsensitiveDictionary::offsetUnset() CaseInsensitiveDictionary::offsetUnset WP 7.0
public function offsetUnset($offset) {
if (is_string($offset)) {
$offset = strtolower($offset);
}
if ($offset === null) {
$offset = '';
}
unset($this->data[$offset]);
}