WPCF7_Validation::offsetGet()publicCF7 1.0ReturnTypeWillChange

Returns the value at specified offset.

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

Хуков нет.

Возвращает

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

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

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

Код WPCF7_Validation::offsetGet() CF7 6.0.3

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