thinkphp三步整合文件上传系列-腾讯云oss上传
2021/8/19 9:06:34
本文主要是介绍thinkphp三步整合文件上传系列-腾讯云oss上传,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
thinkphp6 腾讯云oss
基于 freyo/flysystem-qcloud-cos-v5 轻度封装tp
安装
1 | composer require death_satan/thinkphp-tencent-oss |
初始化
修改配置 config/filesystem.php 文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <? php return [ // 默认磁盘 'default' => env('filesystem.driver', 'local'), // 磁盘列表 'disks' => [ 'local' => [ 'type' => 'local', 'root' => app()->getRuntimePath() . 'storage', ], 'public' => [ // 磁盘类型 'type' => 'local', // 磁盘路径 'root' => app()->getRootPath() . 'public/storage', // 磁盘路径对应的外部URL路径 'url' => '/storage', // 可见性 'visibility' => 'public', ], //新增一个阿里云磁盘 'tencent'=>[ 'type' => 'Tencent',//设置驱动 'region' => 'ap-guangzhou',//设置一个默认的存储桶地域 'credentials' => [ 'appId' => null,//appid 'secretId' => 'your-secret-id',//"云 API 密钥 SecretId"; 'secretKey' => 'your-secret-key', //"云 API 密钥 SecretKey"; 'token' => null,//"临时密钥 token"; ], 'timeout' => 60,// 'connect_timeout' => 60,// 'bucket' => 'your-bucket-name', //设置一个默认的存储桶地域 'cdn' => '',//cdn地址 'scheme' => 'https', //协议头部,默认为http 'read_from_cdn' => false,// 'cdn_key' => '',//cdn key 'encrypt' => false,// ] // 更多的磁盘配置信息 ], ]; |
使用方法
通过filesystem使用
1 2 3 4 5 6 7 8 9 10 | //通过门面使用 think\facade\Filesystem::disk('tencent') //在控制器中通过注入使用 class TestControl{ public function Test(\think\Filesystem $filesystem) { $aliyun = $filesystem->disk('tencent'); } } |
文件上传
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <? php namespace app\controller; use app\BaseController; use app\Request; use think\facade\Filesystem; class Index extends BaseController { public function index(Request $request) { //获取上传文件 $file = $request->file('image'); //通过filesystem进行上传 $url = Filesystem::disk('tencent')->putFile('images', $file); if (!$url) new \exception('上传失败'); dd('上传成功,文件位置:' . $url); } } |
这篇关于thinkphp三步整合文件上传系列-腾讯云oss上传的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
原文链接: https://www.cnblogs.com/death-satan/p/15159601.html
- 2024-12-19php8的协程和hyperf的协程有什么区别?-icode9专业技术文章分享
- 2024-12-19php8 的fiber是什么?-icode9专业技术文章分享
- 2024-12-05怎么在php8,1 里面开启 debug?-icode9专业技术文章分享
- 2024-12-05怎么在php8,1 里面开启 debug?-icode9专业技术文章分享
- 2024-11-29使用PHP 将ETH账户的资产汇集到一个账户
- 2024-11-23怎么实现安卓+php 热更新方案?-icode9专业技术文章分享
- 2024-11-22PHP 中怎么实现判断多个值是否为空、null 或者为 false?-icode9专业技术文章分享
- 2024-11-11开源 PHP 商城项目 CRMEB 二次开发和部署教程
- 2024-11-09怎么使用php在kaufland平台刊登商品?-icode9专业技术文章分享
- 2024-11-05PHP的抽象类和接口是什么,有什么区别-icode9专业技术文章分享