johnnycai / tp6-filesystem-cloud
thinkphp6 filesystem cloud support,include Aliyun,Qcloud and Qiniu.
v1.0.1
2022-09-17 17:40 UTC
Requires
- php: >=7.1.0
- aliyuncs/oss-sdk-php: ^2.3
- qcloud/cos-sdk-v5: ^2.0
- qiniu/php-sdk: ^7.2
- topthink/framework: ^6.0.0
- zing/esdk-obs-php: ^3.21
This package is auto-updated.
Last update: 2025-03-17 23:15:34 UTC
README
ThinkPHP6 的Filesystem扩展包,支持上传到阿里云、腾讯云、七牛云、华为云
使用方法
安装
composer require johnnycai/tp6-filesystem-cloud
在config/filesystem.php中增加对应驱动配置
return [ "default" => "oss", "disks" => [ "public" => [ "type" => "local", "root" => ".", "visibility" => "public", "domain" => "" ], // 阿里云配置 "oss" => [ "type" => "oss", 'prefix' => '',// 前缀,非必填 "accessKeyId" => "", "accessKeySecret" => "", "endpoint" => "", "bucket" => "", "domain" => "" ], // 七牛云配置 "qiniu" => [ "type" => "qiniu", "accessKey" => "", "secretKey" => "", "bucket" => "", "domain" => "" ], // 腾讯云配置 "cos" => [ "type" => "cos", "region" => "ap-guangzhou", "credentials" => [ "appId" => "", "secretId" => "", "secretKey" => "" ], "bucket" => "", "domain" => "", "scheme" => "https", 'encrypt'=> false, ], // 华为云配置 "obs" => [ "type" => "obs", "accessKey" => "", "secretKey" => "", "endpoint" => "", "bucket" => "", "domain" => "" ], ] ];
用法
上传
$file = $this->request->file('file'); \think\facade\Filesystem::disk('oss')->putFile('upload', $file);
删除
\think\facade\Filesystem::disk('oss')->delete($path);
更新
\think\facade\Filesystem::disk('oss')->update($path);
重命名
\think\facade\Filesystem::disk('oss')->rename($path,$newpath);
创建文件夹
\think\facade\Filesystem::disk('oss')->createDir($dirname);
删除文件夹
\think\facade\Filesystem::disk('oss')->createDir($dirname);
更详细用法参考Adapter对应文件