diff --git a/application/project/controller/File.php b/application/project/controller/File.php index 515df8d..2698396 100644 --- a/application/project/controller/File.php +++ b/application/project/controller/File.php @@ -101,7 +101,7 @@ class File extends BasicApi $this->error($e->getMessage(), 500); } $info = $uploadInfo['uploadInfo']; - + unset($uploadInfo); $fileData = [ 'extension' => $info->getExtension(), 'file_type' => $info->getInfo()['type'], @@ -134,11 +134,10 @@ class File extends BasicApi !isset($data['taskCode']) && $data['taskCode'] = ''; $fileResult = \app\common\Model\File::createFile($data['projectCode'], $fileData); - unset($fileData); unset($info); //文件碎片移除 foreach ($fileList as $file) { - @unlink($file); + unlink($file); } $fileInfo = \app\common\Model\File::where(['code' => $fileResult['code']])->find(); if ($data['taskCode']) { diff --git a/extend/service/FileService.php b/extend/service/FileService.php index 7c34523..bd31c5f 100644 --- a/extend/service/FileService.php +++ b/extend/service/FileService.php @@ -328,7 +328,7 @@ class FileService * @throws \think\Exception * @throws \think\exception\PDOException */ - public static function qiniu($filename, $content) + public static function qiniu($filename, $content, $append = false) { $auth = new Auth(sysconf('storage_qiniu_access_key'), sysconf('storage_qiniu_secret_key')); $token = $auth->uploadToken(sysconf('storage_qiniu_bucket')); @@ -351,7 +351,7 @@ class FileService * @throws \think\Exception * @throws \think\exception\PDOException */ - public static function oss($filename, $content) + public static function oss($filename, $content, $append = false) { try { $endpoint = 'http://' . sysconf('storage_oss_domain');