WpOrg\Requests\Utility

CaseInsensitiveDictionary::offsetExists()publicWP 1.0ReturnTypeWillChange

Check if the given item exists

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

Хуков нет.

Возвращает

true|false. Does the item exist?

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

$CaseInsensitiveDictionary = new CaseInsensitiveDictionary();
$CaseInsensitiveDictionary->offsetExists( $offset );
$offset(строка) (обязательный)
Item key

Код CaseInsensitiveDictionary::offsetExists() WP 6.6.2

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

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