WP_REST_Request::set_body( string $data )

Sets body content.

Parameters

$data

(string) (Required) Binary data from the request body.

Source

File: wp-includes/rest-api/class-wp-rest-request.php

public function set_body( $data ) {
		$this->body = $data;

		// Enable lazy parsing.
		$this->parsed_json    = false;
		$this->parsed_body    = false;
		$this->params['JSON'] = null;
	}

Changelog

Version Description
4.4.0 Introduced.

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