WP_REST_Request::offsetGet()publicWP 4.4.0ReturnTypeWillChange

Retrieves a parameter from the request.

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

Хуков нет.

Возвращает

Разное|null. Value if set, null otherwise.

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

$WP_REST_Request = new WP_REST_Request();
$WP_REST_Request->offsetGet( $offset );
$offset(строка) (обязательный)
Parameter name.

Список изменений

С версии 4.4.0 Введена.

Код WP_REST_Request::offsetGet() WP 6.5.2

public function offsetGet( $offset ) {
	return $this->get_param( $offset );
}