WpOrg\Requests\Utility
CaseInsensitiveDictionary::offsetExists()
Check if the given item exists
Метод класса: CaseInsensitiveDictionary{}
Хуков нет.
Возвращает
true|false
. Does the item exist?
Использование
$CaseInsensitiveDictionary = new CaseInsensitiveDictionary(); $CaseInsensitiveDictionary->offsetExists( $offset );
- $offset(строка) (обязательный)
- Item key
Код CaseInsensitiveDictionary::offsetExists() CaseInsensitiveDictionary::offsetExists WP 6.6.2
public function offsetExists($offset) { if (is_string($offset)) { $offset = strtolower($offset); } return isset($this->data[$offset]); }