W3cubDocs

/WordPress

WP_REST_Request::__construct( string $method = , string $route = , array $attributes = array() )

Constructor.

Parameters

$methodstringoptional
Request method.

Default:''

$routestringoptional
Request route.

Default:''

$attributesarrayoptional
Request attributes.

Default:array()

Source

public function __construct( $method = '', $route = '', $attributes = array() ) {
	$this->params = array(
		'URL'      => array(),
		'GET'      => array(),
		'POST'     => array(),
		'FILES'    => array(),

		// See parse_json_params.
		'JSON'     => null,

		'defaults' => array(),
	);

	$this->set_method( $method );
	$this->set_route( $route );
	$this->set_attributes( $attributes );
}

Changelog

Version Description
4.4.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_request/__construct