mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
15 lines
287 B
PHP
15 lines
287 B
PHP
<?php
|
||
require_once __DIR__ . '/../autoload.php';
|
||
|
||
use Qiniu\Auth;
|
||
use Qiniu\Storage\BucketManager;
|
||
|
||
$accessKey = 'Access_Key';
|
||
$secretKey = 'Secret_Key';
|
||
|
||
//初始化Auth状态:
|
||
$auth = new Auth($accessKey, $secretKey);
|
||
|
||
//初始化BucketManager
|
||
$bucketMgr = new BucketManager($auth);
|