在upload里面设置了thumb = true,但是没有生成缩略图,网上搜了好多但一直没找到答案,求大神指点。
$upload = new \Think\Upload();// 实例化上传类
$upload->rootPath = './Public/';
$upload->savePath = 'Products/';
$upload->maxSize = 3145728 ;// 设置附件上传大小
$upload->exts = array('jpg', 'png', 'jpeg');// 设置附件上传类型
$upload->thumb = true;//设置缩略图
$upload->thumbMaxWidth = '800';
$upload->thumbMaxHeight = '600';
$upload->thumbRemoveOrigin = true;
// 上传文件
$info = $upload->uploadOne($_FILES['upload_product']); 最佳答案