first commit

This commit is contained in:
Your Name
2026-09-08 11:40:15 +08:00
commit a5353f7eb5
9568 changed files with 1646214 additions and 0 deletions
@@ -0,0 +1,26 @@
<?php
require_once __DIR__ . '/../autoload.php';
use Qiniu\Auth;
use Qiniu\Config;
use Qiniu\Storage\BucketManager;
// 控制台获取密钥:https://portal.qiniu.com/user/key
$accessKey = getenv('QINIU_ACCESS_KEY');
$secretKey = getenv('QINIU_SECRET_KEY');
$auth = new Auth($accessKey, $secretKey);
$config = new Config();
$bucketManager = new BucketManager($auth, $config);
// 获取指定 zone(存储区域)的空间信息列表
// 存储区域,参考文档:https://developer.qiniu.com/kodo/manual/1671/region-endpoint
$region = 'z1'; // 华东:z0,华北:z1,华南:z2,北美:na0,东南亚:as0
list($ret, $err) = $bucketManager->bucketInfos($region);
if ($err != null) {
var_dump($err);
} else {
var_dump($ret);
}