Yii框架单文件上传

1 篇文章 0 订阅

一、但图片上传
注意:本案例在yii框架高级模板的frontend代码操作

/*
*
*model层
*imagsForm.php
*/
<?php
namespace frontend\models;

use yii\base\Model;
use yii\web\UploadedFile;

/**
* 
*/
class InamgesForm extends Model
{

    // public $imageFile;
    // public $area;
     public $imageFile;

    public function rules()
    {
        return [
            [['imageFile'], 'file', 'skipOnEmpty' => false, 'extensions' => 'png, jpg'],
        ];
    }

    public function upload()
    {
        if ($this->validate()) {

           $imageName = substr(time(),4).rand(111,999);
           // $this->imageFile->baseName 

            $this->imageFile->saveAs('uploads/' . $imageName . '.' . $this->imageFile->extension);
            return $imageName . '.' . $this->imageFile->extension;
        } else {
            return false;
        }
    }
}

控制器层

/**
*IamgesController.php
*/
<?php
/**
 * @author:木子
 */

namespace frontend\controllers;


use Yii;
use yii\web\Controller;
use frontend\models\InamgesForm;
use yii\web\UploadedFile;

/**
* 
*/
class ImagesController extends Controller
{

    public function actionUpload()
    {
        $model = new InamgesForm();

        if(yii::$app->request->isPost)
        {
            // $allImage=UploadedFile::getInstance($model, 'imageFile');
            // var_dump($allImage);die;

         $model->imageFile = UploadedFile::getInstance($model, 'imageFile');

            if (!$image = $model->upload()) {

                 echo "<script> alert(error::01 文件上传失败)<script>";

              }else{

                 // 文件本地上传成功  dao入库
                $dao = Yii::$app->db;

                $data = ['imageFile'=>$image];

                $info = $dao->createCommand()->insert('images',$data)->execute();

                if(!$info){

                    echo "<script> alert(error::02 文件入库失败!)</script>";

                } 

                echo "流程完成!";die;
            }

        }

        return $this->render('upload',['model'=>$model]);

    }

}

视图层

/**
*iamge.php
*/
<?php
use yii\widgets\ActiveForm;
?>

<?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]) ?>

    <?= $form->field($model, 'imageFile')->fileInput() ?>

    <button>Submit</button>

<?php ActiveForm::end() ?>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值