think-filesystem文件存储驱动

安装

composer require tp5er/think-filesystem

阿里云OSS

安装驱动 composer require xxtime/flysystem-aliyun-oss ^1.5

'oss' => [
    'type'         => 'oss',
    'credentials'=>[//若为false,则使用函数计算 runtime context提供的 credentials
        'accessId'     => '******',
        'accessSecret' => '******',
    ],
    'bucket'       => 'bucket',
    'endpoint'     => 'oss-cn-hangzhou.aliyuncs.com',
    'url'          => 'oss.domain.com'
],

腾讯COS

安装驱动 composer require overtrue/flysystem-cos ^2.1

'cos' => [
    'type'            => 'cos',
    'region'          => '***', //bucket 所属区域 英文
    'appId'           => '***', // 域名中数字部分
    'secretId'        => '***',
    'secretKey'       => '***',
    'bucket'          => '***',
    'timeout'         => 60,
    'connect_timeout' => 60,
    'cdn'             => '您的 CDN 域名',
    'scheme'          => 'https',
    'read_from_cdn'   => false,
    'domain'       => 'oss.domain.com',//访问域名
],

七牛云

安装驱动  composer require overtrue/flysystem-qiniu ^1.0

'qiniu' => [
    'type'            => 'qiniu' ,
    'accessKey' => '******',
    'secretKey' => '******',
    'bucket'    => 'bucket',
    'domain'       => 'oss.domain.com',//不要斜杠结尾,URL地址域名
],

SFTP

安装驱动  composer require league/flysystem-sftp ^1.0

'sftp' => [
    'type'     => 'sftp',
    'host'     => '127.0.0.1',
    'port'     => 22,
    'username' => 'root',
    'password' => '123456',
    'root'     => '/home/sftp',
    'timeout'  => 10,
],

FTP

'ftp' => [
  'type'     => 'ftp',
  'host' => 'ftp.example.com',
  'username' => 'username',
  'password' => 'password',
  'root' => '/path/to/root',
],
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值