欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

图片上传

程序员文章站 2022-05-17 13:41:48
...
运行提示没有上传目录文件夹
// 本类由系统自动生成,仅供测试用途
namespace Home\Controller;
use Think\Controller;
class LoadController extends Controller {
public function load(){

$upload = new \Think\Upload();// 实例化上传类
$upload->maxSize = 3145728 ;// 设置附件上传大小
$upload->exts = array('jpg', 'gif', 'png', 'jpeg');// 设置附件上传类型
$upload->savePath = 'Public/Uploads/'; // 设置附件上传目录
// 上传文件
$info = $upload->upload();
if(!$info) {// 上传错误提示错误信息
$this->error($upload->getError());
}else{// 上传成功
$this->success('上传成功!');
}
$this->display();
}
}

AD:真正免费,域名+虚机+企业邮箱=0元