0 关注者

接口 yii\web\RequestParserInterface

实现于yii\web\JsonParser, yii\web\MultipartFormDataParser
可用版本2.0
源代码 https://github.com/yiisoft/yii2/blob/master/framework/web/RequestParserInterface.php

用于解析原始请求体为参数数组的类的接口。

公共方法

隐藏继承方法

方法 描述 定义于
parse() 解析 HTTP 请求体。 yii\web\RequestParserInterface

方法详情

隐藏继承方法

parse() public abstract method

解析 HTTP 请求体。

public abstract array parse ( $rawBody, $contentType )
$rawBody string

原始 HTTP 请求体。

$contentType string

为请求体指定的 Content-Type。

返回值 array

从请求体解析出的参数

                public function parse($rawBody, $contentType);