分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 前端开发

上传图片到腾讯云

发布时间:2023-09-06 02:21责任编辑:郭大石关键词:上传图片

1、composer安装扩展

"qcloud/cos-sdk-v5": "1.*"

2、代码,多图

<?phpnamespace App\Library\lib;use Qcloud\Cos\Client;class CosLib{ ???const REGION = ‘test‘; ???const APP_ID = ‘test‘; ???const SECRET_ID = ‘test‘; ???const SECRET_KEY = ‘test‘; ???const BUCKET = ‘test‘; ???const ROOT_PATH = ‘test; ???/** ????* 【构造函数】 ????* ????*/ ???public function __construct() { ???} ???/** ????* 上传多张图片到腾讯云 ????* @param $files ????* $files示例:$request->file(‘file_img‘) ????* @return array ????*/ ???public static function uploadSkuImg($files) { ???????$cosClient = new Client( ???????????array( ???????????????‘region‘ => self::REGION, ???????????????‘credentials‘=> array( ???????????????????‘appId‘ => self::APP_ID, ???????????????????‘secretId‘ ???=> self::SECRET_ID, ???????????????????‘secretKey‘ => self::SECRET_KEY ???????????????) ???????????) ???????); ???????$httpPaths = []; ???????try { ???????????foreach ($files as $file) { ???????????????$realPath= $file->getRealPath(); ???????????????$currentTime = time(); ???????????????$curY = date(‘Y‘, $currentTime); ???????????????$curM = date(‘m‘, $currentTime); ???????????????$curD = date(‘d‘,$currentTime); ???????????????$fileName = $curY.$curM.$curD.$currentTime.mt_rand(1000, 9999).‘.jpg‘; ???????????????$key = $curY.‘/‘.$curM.‘/‘.$curD.‘/‘.$fileName; ???????????????$result = $cosClient->putObject( ???????????????????array( ???????????????????????‘Bucket‘ => self::BUCKET, ???????????????????????‘Key‘ => ?$key, ???????????????????????‘Body‘ => file_get_contents($realPath) ???????????????????) ???????????????); ???????????????$httpPaths[] = self::ROOT_PATH . $key; ???????????} ???????} catch (\Exception $e) { ???????????return [ ???????????????‘code‘ => 201, ???????????????‘result‘ => $e->getMessage() ???????????]; ???????} ???????return [ ???????????‘code‘ => 200, ???????????‘result‘ => $httpPaths ???????]; ???}}

上传图片到腾讯云

原文地址:https://www.cnblogs.com/zhengchuzhou/p/9939044.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved