thinkphp6三步整合七牛云上传,整合tp6七牛云filesystem扩展

thinkphp6整合文件上传,七牛云

composer下载包

# -vvv 可以试试的看到require进度
composer require  death_satan/think-qiniu-storage -vvv

编辑 项目config目录下的filesystem.php文件



use think\facade\Env;

return [
    // 默认磁盘
    'default' => Env::get('filesystem.driver', 'local'),
    // 磁盘列表
    'disks'   => [
        'local'  => [
            'type' => 'local',
            'root' => app()->getRuntimePath() . 'storage',
        ],
        'public' => [
            // 磁盘类型
            'type'       => 'local',
            // 磁盘路径
            'root'       => app()->getRootPath() . 'public/storage',
            // 磁盘路径对应的外部URL路径
            'url'        => '/storage',
            // 可见性
            'visibility' => 'public',
        ],
         //newly added
        'qiniu'=>[
           'type'=>'qiniu',
           'accessKey'=>'your accessKey',//你的accessKey
           'secretKey'=>'your secretKey',//你的secretKey
           'bucket'=>'your qiniu bucket name',//你的存储空间名
           'domain'=>'your qiniu bind domain' //你的七牛云加速域名
        ]   
        // 更多的磁盘配置信息
    ],
];

配置完后在控制器中使用


namespace app\controller;

use app\BaseController;

class Index extends BaseController
{
    public function index()
    {
        //获取上传文件
        $image = $this->request->file('image');
        //获取上传后的文件路径
        $qiniu_file = \think\facade\Filesystem::disk('qiniu')->putFile('image',$image);
        dd($qiniu_file);
    }
}

你可能感兴趣的:(php,thinkphp6,php,thinkphp)