在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
先从官网下载SDK,然后新建一个文件,里面包括上传,下载,删除 <?php header("Content-Type:text/html; charset=utf8"); require_once __DIR__ . './autoload.php'; // 引入鉴权类 use Qiniu\Auth; use Qiniu\Storage\BucketManager; // 引入上传类 use Qiniu\Storage\UploadManager; // 需要填写你的 Access Key 和 Secret Key $accessKey = 'fclU0P6jeGk3-HvLlMiksLPrmv3EGkwAJYomsAvW'; $secretKey = 'LSx15VFgFASg4EJrUtDCO2upFNfL0GMnVKHRfmNZ'; // 构建鉴权对象 $auth = new Auth($accessKey, $secretKey); /* 上传 */ ////////////////////////////////////////////////////////////////////////// // 要上传的空间 $bucket = 'richie'; //自定义上传回复的凭证 返回的数据 $returnBody = '{"key":"$(key)","hash":"$(etag)","fsize":$(fsize),"bucket":"$(bucket)","name":"$(fname)"}'; $policy = array( 'returnBody' => $returnBody, ); //token过期时间 $expires = 3600; // 生成上传 Token $token = $auth->uploadToken($bucket, null, $expires, $policy, true); // 要上传文件的本地路径 $filePath = './img-08.jpg'; // 上传到七牛后保存的文件名,可拼接
|
2022-08-18
2022-07-08
2022-08-17
2022-11-06
2022-08-15
请发表评论