Interface yii\web\RequestParserInterface

Implemented byyii\web\JsonParser
Available since version2.0
Source Code https://github.com/yiisoft/yii2/blob/master/framework/web/RequestParserInterface.php

Interface for classes that parse the raw request body into a parameters array.

Public Methods

Hide inherited methods

MethodDescriptionDefined By
parse() Parses a HTTP request body. yii\web\RequestParserInterface

Method Details

parse() public method

Parses a HTTP request body.

array parse$rawBody$contentType )
$rawBody string

The raw HTTP request body.

$contentType string

The content type specified for the request body.

return array

Parameters parsed from the request body