First commit
This commit is contained in:
19
app/Common/extend/qiniu/examples/rs_stat.php
Executable file
19
app/Common/extend/qiniu/examples/rs_stat.php
Executable file
@@ -0,0 +1,19 @@
|
||||
<?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.mp4";
|
||||
$auth = new Auth($accessKey, $secretKey);
|
||||
$config = new \Qiniu\Config();
|
||||
$bucketManager = new \Qiniu\Storage\BucketManager($auth, $config);
|
||||
list($fileInfo, $err) = $bucketManager->stat($bucket, $key);
|
||||
if ($err) {
|
||||
print_r($err);
|
||||
} else {
|
||||
print_r($fileInfo);
|
||||
}
|
||||
Reference in New Issue
Block a user