mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
24 lines
503 B
PHP
24 lines
503 B
PHP
<?php
|
|
require_once __DIR__ . '/../autoload.php';
|
|
|
|
use Qiniu\Auth;
|
|
use Qiniu\Storage\BucketManager;
|
|
|
|
$accessKey = 'Access_Key';
|
|
$secretKey = 'Secret_Key';
|
|
|
|
$auth = new Auth($accessKey, $secretKey);
|
|
$bmgr = new BucketManager($auth);
|
|
|
|
$url = 'http://php.net/favicon.ico';
|
|
$bucket = 'Bucket_Name';
|
|
$key = time() . '.ico';
|
|
|
|
list($ret, $err) = $bmgr->fetch($url, $bucket, $key);
|
|
echo "=====> fetch $url to bucket: $bucket key: $key\n";
|
|
if ($err !== null) {
|
|
var_dump($err);
|
|
} else {
|
|
echo 'Success';
|
|
}
|