1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- require dirname(__FILE__, 2) . '/vendor/autoload.php';
- $secretId = "SECRETID";
- $secretKey = "SECRETKEY";
- $region = "ap-beijing";
- $cosClient = new Qcloud\Cos\Client(
- array(
- 'region' => $region,
- 'scheme' => 'https',
- 'credentials'=> array(
- 'secretId' => $secretId,
- 'secretKey' => $secretKey)));
- try {
- $result = $cosClient->putBucketLifecycle(array(
- 'Bucket' => 'examplebucket-125000000',
- 'Rules' => array(
- array(
- 'Expiration' => array(
- 'Days' => integer,
- ),
- 'ID' => 'string',
- 'Filter' => array(
- 'Prefix' => 'string'
- ),
- 'Status' => 'string',
- 'Transitions' => array(
- array(
- 'Days' => integer,
- 'StorageClass' => 'string'
- ),
-
- ),
- ),
-
- )
- ));
-
- print_r($result);
- } catch (\Exception $e) {
-
- echo "$e\n";
- }
|