WordPress\AiClientDependencies\Psr\Http\Message

ServerRequestInterface::withParsedBodypublicWP 1.0

Return an instance with the specified body parameters.

These MAY be injected during instantiation.

If the request Content-Type is either application/x-www-form-urlencoded or multipart/form-data, and the request method is POST, use this method ONLY to inject the contents of $_POST.

The data IS NOT REQUIRED to come from $_POST, but MUST be the results of deserializing the request body content. Deserialization/parsing returns structured data, and, as such, this method ONLY accepts arrays or objects, or a null value if nothing was available to parse.

As an example, if content negotiation determines that the request data is a JSON payload, this method could be used to create a request instance with the deserialized parameters.

This method MUST be implemented in such a way as to retain the immutability of the message, and MUST return an instance that has the updated body parameters.

Method of the class: ServerRequestInterface{}

No Hooks.

Returns

static.

Usage

$ServerRequestInterface = new ServerRequestInterface();
$ServerRequestInterface->withParsedBody( $data ): ServerRequestInterface;
$data(null|array|object) (required)
The deserialized body data. This will
php typically be in an array or object. .

ServerRequestInterface::withParsedBody() code WP 7.0

public function withParsedBody($data): ServerRequestInterface;