input('type'); //商品分类上传图片要求尺寸是750*750 if ($type && $type == 'category') { $image = request()->file('file'); if ($image && $image->isValid()) { $imageSize = getimagesize($image->getRealPath()); $width = $imageSize[0]; $height = $imageSize[1]; if ($width != 750 || $height != 750) { return $this->error("上传文件的图片大小不合符标准,标准尺寸为750×750。"); } } } return parent::uploadFile(); } }