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.
20 lines
490 B
20 lines
490 B
<?php
|
|
require_once __DIR__ . '/../autoload.php';
|
|
|
|
use \Qiniu\Auth;
|
|
|
|
$accessKey = getenv('QINIU_ACCESS_KEY');
|
|
$secretKey = getenv('QINIU_SECRET_KEY');
|
|
$bucket = getenv('QINIU_TEST_BUCKET');
|
|
|
|
$key = "qiniu.jpg";
|
|
$auth = new Auth($accessKey, $secretKey);
|
|
$config = new \Qiniu\Config();
|
|
$bucketManager = new \Qiniu\Storage\BucketManager($auth, $config);
|
|
|
|
$status = 1;//0表示启用;1表示禁用
|
|
|
|
$err = $bucketManager->changeStatus($bucket, $key, $status);
|
|
if ($err) {
|
|
print_r($err);
|
|
}
|
|
|