设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 创业者 手机 数据
当前位置: 首页 > 站长学院 > PHP教程 > 正文

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

发布时间:2021-02-18 23:08 所属栏目:121 来源:网络整理
导读: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; displa

<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

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

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

'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多文件上传实例说明,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的,在此也非常感谢大家对编程之家网站的支持!

(编辑:ASP站长网)

    网友评论
    推荐文章
      热点阅读