截流自动化的商城平台
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.

putBucketLifecycle.php 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. try {
  14. $result = $cosClient->putBucketLifecycle(array(
  15. 'Bucket' => 'examplebucket-125000000', //格式:BucketName-APPID
  16. 'Rules' => array(
  17. array(
  18. 'Expiration' => array(
  19. 'Days' => integer,
  20. ),
  21. 'ID' => 'string',
  22. 'Filter' => array(
  23. 'Prefix' => 'string'
  24. ),
  25. 'Status' => 'string',
  26. 'Transitions' => array(
  27. array(
  28. 'Days' => integer,
  29. 'StorageClass' => 'string'
  30. ),
  31. // ... repeated
  32. ),
  33. ),
  34. // ... repeated
  35. )
  36. ));
  37. // 请求成功
  38. print_r($result);
  39. } catch (\Exception $e) {
  40. // 请求失败
  41. echo "$e\n";
  42. }