截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

download.php 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. require dirname(__FILE__) . '/../vendor/autoload.php';
  3. $secretId = "COS_SECRETID"; //"云 API 密钥 SecretId";
  4. $secretKey = "COS_SECRETKEY"; //"云 API 密钥 SecretKey";
  5. $region = "ap-beijing"; //设置一个默认的存储桶地域
  6. $cosClient = new Qcloud\Cos\Client(
  7. array(
  8. 'region' => $region,
  9. 'schema' => 'https', //协议头部,默认为http
  10. 'credentials'=> array(
  11. 'secretId' => $secretId ,
  12. 'secretKey' => $secretKey)));
  13. $local_path = "/data/exampleobject";
  14. $printbar = function($totolSize, $downloadedSize) {
  15. printf("downloaded [%d/%d]\n", $downloadedSize, $totolSize);
  16. };
  17. try {
  18. $result = $cosClient->download(
  19. $bucket = 'examplebucket-125000000', //格式:BucketName-APPID
  20. $key = 'exampleobject',
  21. $saveAs = $local_path,
  22. $options=['Progress' => $printbar, //指定进度条
  23. 'PartSize' => 10 * 1024 * 1024, //分块大小
  24. 'Concurrency' => 5, //并发数
  25. 'ResumableDownload' => true, //是否开启断点续传,默认为false
  26. 'ResumableTaskFile' => 'tmp.cosresumabletask' //断点文件信息路径,默认为<localpath>.cosresumabletask
  27. ]
  28. );
  29. // 请求成功
  30. print_r($result);
  31. } catch (\Exception $e) {
  32. // 请求失败
  33. echo($e);
  34. }