Class yii\web\MultipartFormDataParser
MultipartFormDataParser parses content encoded as 'multipart/form-data'.
This parser provides the fallback for the 'multipart/form-data' processing on non POST requests, for example: the one with 'PUT' request method.
In order to enable this parser you should configure yii\web\Request::$parsers in the following way:
return [
'components' => [
'request' => [
'parsers' => [
'multipart/form-data' => 'yii\web\MultipartFormDataParser'
],
],
// ...
],
// ...
];
Method parse() of this parser automatically populates $_FILES
with the files parsed from raw body.
Note: since this is a request parser, it will initialize
$_FILES
values on yii\web\Request::getBodyParams(). Until this method is invoked,$_FILES
array will remain empty even if there are submitted files in the request body. Make sure you have requested body params before any attempt to get uploaded file in case you are using this parser.
Usage example:
use yii\web\UploadedFile;
$restRequestData = Yii::$app->request->getBodyParams();
$uploadedFile = UploadedFile::getInstancesByName('photo');
$model = new Item();
$model->populate($restRequestData);
copy($uploadedFile->tempName, '/path/to/file/storage/photo.jpg');
Note: although this parser fully emulates regular structure of the
$_FILES
, related temporary files, which are available viatmp_name
key, will not be recognized by PHP as uploaded ones. Thus functions likeis_uploaded_file()
andmove_uploaded_file()
will fail on them. This also means yii\web\UploadedFile::saveAs() will fail as well.
公共属性
属性 | 类型 | 描述 | 被定义在 |
---|---|---|---|
$force | boolean | Whether to parse raw body even for 'POST' request and $_FILES already populated. |
yii\web\MultipartFormDataParser |
$uploadFileMaxCount | integer | Maximum upload files count. | yii\web\MultipartFormDataParser |
$uploadFileMaxSize | integer | Upload file max size in bytes. | yii\web\MultipartFormDataParser |
公共方法
属性详情
Whether to parse raw body even for 'POST' request and $_FILES
already populated.
By default this option is disabled saving performance for 'POST' requests, which are already
processed by PHP automatically.
Note: if this option is enabled, value of
$_FILES
will be reset on each parse.
Maximum upload files count.
Upload file max size in bytes.
方法详情
public integer getUploadFileMaxCount() | ||
return | integer | Maximum upload files count. |
---|
public integer getUploadFileMaxSize() | ||
return | integer | Upload file max size in bytes. |
---|
Parses a HTTP request body.
public 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 |
---|
public void setUploadFileMaxCount($uploadFileMaxCount) | ||
$uploadFileMaxCount | integer | Maximum upload files count. |
public void setUploadFileMaxSize($uploadFileMaxSize) | ||
$uploadFileMaxSize | integer | Upload file max size in bytes. |