mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改OSS文件上传有效时间
This commit is contained in:
parent
3363bca114
commit
a973e3eb40
@ -97,7 +97,12 @@ class Plugs extends BasicAdmin {
|
||||
break;
|
||||
case 'oss':
|
||||
$time = time() + 3600;
|
||||
$policyText = ['expiration' => date('Y-m-d', $time) . 'T' . date('H:i:s') . '.000Z', 'conditions' => [['content-length-range', 0, 1048576000]]];
|
||||
$policyText = [
|
||||
'expiration' => date('Y-m-d', $time) . 'T' . date('H:i:s', $time) . '.000Z',
|
||||
'conditions' => [
|
||||
['content-length-range', 0, 1048576000]
|
||||
]
|
||||
];
|
||||
$config['policy'] = base64_encode(json_encode($policyText));
|
||||
$config['server'] = FileService::getUploadOssUrl();
|
||||
$config['site_url'] = FileService::getBaseUriOss() . $filename;
|
||||
|
Loading…
x
Reference in New Issue
Block a user