web\Request $pathInfo

$pathInfo public property Part of the request URL that is after the entry script and before the question mark. Note, the returned path info is already URL-decoded. public string getPathInfo ( )public void setPathInfo ( $value )

web\Request $parsers

$parsers public property The parsers for converting the raw HTTP request body into $bodyParams. The array keys are the request Content-Types, and the array values are the corresponding configurations for creating the parser objects. A parser must implement the yii\web\RequestParserInterface. To enable parsing for JSON requests you can use the yii\web\JsonParser class like in the following example: [ 'application/json' => 'yii\web\JsonParser', ] To register a parser for parsing all r

web\Request $methodParam

$methodParam public property The name of the POST parameter that is used to indicate if a request is a PUT, PATCH or DELETE request tunneled through POST. Defaults to '_method'. See also: getMethod() getBodyParams() public string $methodParam = '_method'

web\Request $method

$method public read-only property Request method, such as GET, POST, HEAD, PUT, PATCH, DELETE. The value returned is turned into upper case. public string getMethod ( )

web\Request $isSecureConnection

$isSecureConnection public read-only property If the request is sent via secure channel (https) public boolean getIsSecureConnection ( )

web\Request $isPut

$isPut public read-only property Whether this is a PUT request. public boolean getIsPut ( )

web\Request $isPost

$isPost public read-only property Whether this is a POST request. public boolean getIsPost ( )

web\Request $isPjax

$isPjax public read-only property Whether this is a PJAX request public boolean getIsPjax ( )

web\Request $isPatch

$isPatch public read-only property Whether this is a PATCH request. public boolean getIsPatch ( )

web\Request $isOptions

$isOptions public read-only property Whether this is a OPTIONS request. public boolean getIsOptions ( )