截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

downloadFolder.php 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. require dirname( __FILE__ ) . '/../vendor/autoload.php';
  3. $secretId = 'COS_SECRETID';
  4. //'云 API 密钥 SecretId';
  5. $secretKey = 'COS_SECRETKEY';
  6. //'云 API 密钥 SecretKey';
  7. $region = 'ap-beijing';
  8. //设置一个默认的存储桶地域
  9. $cosClient = new Qcloud\Cos\Client(
  10. array(
  11. 'region' => $region,
  12. 'schema' => 'https', //协议头部,默认为http
  13. 'credentials'=> array(
  14. 'secretId' => $secretId ,
  15. 'secretKey' => $secretKey
  16. )
  17. )
  18. );
  19. $cos_path = 'cos/folder';
  20. $nextMarker = '';
  21. $isTruncated = true;
  22. while ( $isTruncated ) {
  23. try {
  24. $result = $cosClient->listObjects(
  25. ['Bucket' => 'examplebucket-125000000', //格式:BucketName-APPID
  26. 'Delimiter' => '',
  27. 'EncodingType' => 'url',
  28. 'Marker' => $nextMarker,
  29. 'Prefix' => $cos_path,
  30. 'MaxKeys' => 1000]
  31. );
  32. } catch ( \Exception $e ) {
  33. echo( $e );
  34. }
  35. $isTruncated = $result['IsTruncated'];
  36. $nextMarker = $result['NextMarker'];
  37. foreach ( $result['Contents'] as $content ) {
  38. $cos_file_path = $content['Key'];
  39. $local_file_path = $content['Key'];
  40. // 按照需求自定义拼接下载路径
  41. try {
  42. $result = $cosClient->download(
  43. $bucket = 'examplebucket-125000000', //格式:BucketName-APPID
  44. $key = $cos_file_path,
  45. $saveAs = $local_file_path
  46. );
  47. echo ( $cos_file_path . "\n" );
  48. } catch ( \Exception $e ) {
  49. echo( $e );
  50. }
  51. }
  52. }