mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
Update Upload.php
This commit is contained in:
parent
193195c79f
commit
820fdb99b8
@ -138,7 +138,7 @@ class Upload extends Controller
|
||||
$info = $local->info($this->name, $this->safe, $original);
|
||||
if (in_array($extension, ['jpg', 'gif', 'png', 'bmp', 'jpeg', 'wbmp'])) {
|
||||
[$width, $height] = getimagesize($distname);
|
||||
if ($width < 1 || $height < 1 && $local->del($this->name)) {
|
||||
if (($width < 1 || $height < 1) && $local->del($this->name)) {
|
||||
return json(['uploaded' => false, 'error' => ['message' => '图片读取尺寸失败!']]);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user