1、
百度搜索‘七牛云’,注册账号
创建空间

2、
thinkPHP6的代码 以及扩展安装
先安装扩展
两条命令:
# 安装扩展
composer require death_satan/think-qiniu-storagecomposer require overtrue/laravel-filesystem-qiniu

上图代码:
'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,
]
]);
}
postman 对应截图

上传成功
3、浏览对应的图片


1026

被折叠的 条评论
为什么被折叠?



