Package Data | |
---|---|
Maintainer Username: | zuitu |
Maintainer Contact: | zuitu@foxmail.com (zuitu) |
Package Create Date: | 2017-06-13 |
Package Last Update: | 2017-07-22 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-07 15:06:22 |
Package Statistics | |
---|---|
Total Downloads: | 257 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 0 |
Total Forks: | 1 |
Total Open Issues: | 0 |
ucloud ufile storage for lumen base on https://docs.ucloud.cn/api/ufile-api/index
config/filesystems.php
'disks' => [
'ufile' => [
'driver' => 'ucloud-ufile',
'bucket' => env('UFILE_BUCKET'),
'suffix' => env('UFILE_SUFFIX'), //.ufile.ucloud.cn
'public_key'=> env('UFILE_ACCESS_KEY'), //AccessKey
'secret_key'=> env('UFILE_SECRET_KEY'), //SecretKey
]
],
demo
$file = Storage::disk('public')->get('file.txt');
Storage::disk('ufile')->put('file.name', $file);