1、
百度搜索‘七牛云’,注册账号
thinkPHP6的代码 以及扩展安装
先安装扩展
两条命令:
# 安装扩展
composer require death_satan/think-qiniu-storage
composer require overtrue/laravel-filesystem-qiniu
上图代码
在config里filesystem里添加
'qiniu' => [
'type'=>'qiniu',
'accessKey'=>'…………………………',//你的accessKey
'secretKey'=>'…………………………',//你的secretKey
'bucket'=>'…………………………',//你的存储空间名
'domain'=>'…………………………' //你的七牛云加速域名
],
上图代码:
public function uploadImage(){
$image = \request()->all('image');
$path = Filesystem::disk('qiniu')->putFile(date('Y-m-d'),$image,'uniqid');
return json([
'code'=>200,
'msg'=>'上传七牛成功',
'data'=>[
'path'=>$path,
]
]);
}