WP_REST_Request::offsetGet()publicWP 4.4.0ReturnTypeWillChange

Retrieves a parameter from the request.

Method of the class: WP_REST_Request{}

No Hooks.

Return

Mixed|null. Value if set, null otherwise.

Usage

$WP_REST_Request = new WP_REST_Request();
$WP_REST_Request->offsetGet( $offset );
$offset(string) (required)
Parameter name.

Changelog

Since 4.4.0 Introduced.

WP_REST_Request::offsetGet() code WP 6.5.2

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