WPCF7_Validation::offsetExists()publicCF7 1.0ReturnTypeWillChange

Returns true if the specified offset exists.

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

Хуков нет.

Возвращает

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

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

$WPCF7_Validation = new WPCF7_Validation();
$WPCF7_Validation->offsetExists( $offset );
$offset (обязательный)
-

Код WPCF7_Validation::offsetExists() CF7 5.9.3

public function offsetExists( $offset ) {
	return isset( $this->container[$offset] );
}