thinkphp5文件上传问题

Posted 坚持一点点

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5文件上传问题相关的知识,希望对你有一定的参考价值。

tp5中文件上传如果没有数据就会报错,所以要先做一个判断

//先接收文件数据

$isfile=$_FILES;
//判断是否上传图片数据,如果没有上传数据二位数组中的name会为空,如下例:
if($isfile[‘brand_logo‘][‘name‘]==‘‘){

}else{

}

 

下面是一个完整的图片上传代码

 

if(request()->isPost()){
            $brand=model(‘brand‘);
            $data=$_POST;
            $isfile=$_FILES;
            //判断是否上传图片
            if($isfile[‘brand_logo‘][‘name‘]==‘‘){
                $res=$brand->add($data);
                if($res[‘valid‘]){
                    $this->success($res[‘msg‘],‘lst‘);

                }else{
                    $this->error($res[‘msg‘]);
                }
            }else{
                $file = request()->file(‘brand_logo‘);
                $info = $file->validate([‘size‘=>155678,‘ext‘=>‘jpg,png‘])->move( ‘.staticuploadsrand_logo‘);

                if($info){


                    $data[‘brand_logo‘]=‘.staticuploadsrand_logo\‘.$info->getSavename();
                    $res=$brand->add($data);
                    if($res[‘valid‘]){
                        $this->success($res[‘msg‘],‘lst‘);

                    }else{
                        $this->error($res[‘msg‘]);
                    }
                }else{
                    //输出验证错误提示和图片移动错误提示
                    $this->error($file->getError());
                }
            }



        }

 

以上是关于thinkphp5文件上传问题的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp5.0.5怎么自定义命名上传文件

dropzone拖动文件上传在thinkphp5中应用一个实例

thinkphp5中上传文件自定义命名规则

Thinkphp5+PHPExcel实现批量上传表格数据功能

百度UEditor 用require 引入 Thinkphp5 ,图片上传问题

Thinkphp5 使用unlink删除文件出错Permission denied