一,通过composer 下载七牛云 sdk

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

composer require qiniu/php-sdk

二,手动下载七牛云sdk

1,https://developer.qiniu.com/kodo/sdk/1241/php  在这链接里面下载PHP 的sdk文件夹

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

2,解压放在 vendor 文件夹下面

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

3,前端通过layui 向后端发起请求

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

4,后端数据的处理

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

5,以下是上传图片到七牛云的  前端和后端的源码

前端:

layui.use('upload', function () {
var $ = layui.jquery
, upload = layui.upload;
//详情图片
var uploadInst = upload.render({
elem: '#pica'
, url: '/入口文件/product/intedral_img/detailsKey'
,accept:"images"
,done: function(obj){
console.log(obj)
if(obj.code==1){
$("#diva").append("<span><img src='七牛云的域名"+obj.key+"' tid="+obj.key+" style='width:50px' id='imgs'><i style='cursor:pointer' tid="+obj.key+">x</i></span>");
}
}
});

后端:

/**
* 添加积分详情图片
* 将图片上传到七牛云
* @return false|string|\think\response\Json
* @throws \Exception
*/
public function detailsKey(){
// 用于签名的公钥和私钥
$accessKey = $this->accessKey;//这个数据,我是在当前类调用的
$secretKey = $this->secretKey;
// 初始化签权对象
$auth = new Auth($this->accessKey, $this->secretKey);
// 空间名
$bucket = $this->bucket;
// 生成上传Token
$token = $auth->uploadToken($bucket);
// 构建 UploadManager 对象
$uploadMgr = new UploadManager();
// 上传文件到七牛
$filePath = $_FILES['file']['tmp_name']; //获取上传的图片、文件
$filename = 'image/details/'.date("Y").'/'.date("m").'/'.date("d").'/'.time().$_FILES["file"]["name"];
list($ret, $err) = $uploadMgr->putFile($token, $filename, $filePath);
if ($err !== null) {
return json_encode(['code'=>0,'message'=>'上传失败']);
} else {
return json(['code'=>1,'key'=>$ret['key']]);
}

}
三,删除七牛云中上传的图片

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

前端:

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

后端:

TP5上传图片到七牛云,并且删除七牛云的图片-LMLPHP

以下代码

前端代码

window.del = function(that) {
var tid = $(that).attr("tid");
var span = $(that).parent()
$.ajax({
url:"/xJoPMmqHhQ.php/product/intedral_img/delImg",
dataType:'json',
data:{img:tid},
method:'post',
success:function(res){
if(res.code==1){
layer.msg('成功',{icon:1,title:'提示',time:1000});
span.remove();
}else{
layer.msg('失败',{icon:1,title:'提示',time:1000});
}
}
});
}

后端代码

    //删除七牛云的图片
public function delimage($delFileName)
{

// 判断是否是图片 目前测试,简单判断
$isImage = preg_match('/.*(\.png|\.jpg|\.jpeg|\.gif)$/', $delFileName);
if(!$isImage){
return false;
}
// 构建鉴权对象
$auth = new Auth($this->accessKey, $this->secretKey);
// 配置
$config = new \Qiniu\Config();
// 管理资源
$bucketManager = new BucketManager($auth, $config);
// 删除文件操作
$res = $bucketManager->delete( $this->bucket, $delFileName);
//为空就删除成功
if (is_null($res)) {
$this->success('删除成功');
}

$this->error('删除图片失败');

}

}
05-11 22:23