TP5 上传文件

阅读更多

application\index\controller\Index.php

fetch();
    }
    //文件上传提交
    public function upload()
    {
        //获取表单上传文件
        $file = request()->file('files');
        if (empty($file)) {
            $this->error('请选择上传文件');
        }
        //移动到框架应用根目录/public/uploads/ 目录下
        $info = $file->move(ROOT_PATH . 'public' . DS . 'uploads');
        if ($info) {
            $this->success('文件上传成功');
            echo $info->getFilename();
        } else {
            //上传失败获取错误信息
            $this->error($file->getError());
        }
    }
}

 

application\index\view\index\index.html





文件上传


文件上传

选择文件:

 

效果图:
TP5 上传文件_第1张图片
 

 

 

 

 

 

 

 

 

 

 

 

 

  • TP5 上传文件_第2张图片
  • 大小: 13.5 KB
  • demo.rar (1.2 KB)
  • 下载次数: 1
  • 查看图片附件

你可能感兴趣的:(upload,上传文件,TP5)