Yii2.0多文件上传实例说明

前端之家收集整理的这篇文章主要介绍了Yii2.0多文件上传实例说明前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<p style="text-align: center">

这里写图片描述

<span style="font-size: 24px; font-family: Simsun; white-space: normal; word-spacing: 0px; text-transform: none; float: none; font-weight: bold; color: rgb(0,0); font-style: normal; orphans: 2; widows: 2; display: inline !important; letter-spacing: normal; text-indent: 0px; font-variant-ligatures: normal; font-variant-caps: normal; -webkit-text-stroke-width: 0px"><span class="Apple-converted-space">

这里写图片描述

这里写图片描述

创建控制器FormController

PHP;"> renderPartial('myfiles',['model'=>$model]); } public function actionGetfiles(){ $model = new Uploadm(); if (Yii::$app->request->isPost) { $model->imgFile = UploadedFile::getInstances($model,'imgFile'); if ($model->upload()) { // 文件上传成功 echo '上传成功'; } } }

创建模型Uploadm.PHP

PHP;"> 5],//最多5张 ]; } public function upload() { if ($this->validate()) { foreach ($this->imgFile as $file) { $file->saveAs('uploads/' . $file->baseName . '.' . $file->extension); } return true; } else { return false; } } }

创建视图/views/form/myfiles.PHP

PHP;"> 'login-form','options' => ['class' => 'form-horizontal','enctype' => 'multipart/form-data'],'action'=>'?r=form/getfiles','method'=>'post' ]) ?> field($model,'imgFile[]')->fileInput(['multiple' => true]) ?>

<div class="form-group">
<div class="col-lg-offset-1 col-lg-11">
<?= Html::submitButton('上传',['class' => 'btn btn-primary']) ?>

以上所述是小编给大家介绍的Yii2.0多文件上传实例说明,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的,在此也非常感谢大家对编程之家网站的支持

原文链接:https://www.f2er.com/php/17098.html

猜你在找的PHP相关文章