1.0
This commit is contained in:
39
php-sdk/examples/rsf_list_files.php
Normal file
39
php-sdk/examples/rsf_list_files.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/../autoload.php';
|
||||
|
||||
use Qiniu\Auth;
|
||||
use Qiniu\Storage\BucketManager;
|
||||
|
||||
// 控制台获取密钥:https://portal.qiniu.com/user/key
|
||||
$accessKey = getenv('QINIU_ACCESS_KEY');
|
||||
$secretKey = getenv('QINIU_SECRET_KEY');
|
||||
$bucket = getenv('QINIU_TEST_BUCKET');
|
||||
|
||||
$auth = new Auth($accessKey, $secretKey);
|
||||
$bucketManager = new BucketManager($auth);
|
||||
|
||||
// 资源列举
|
||||
// https://developer.qiniu.com/kodo/api/1284/list
|
||||
|
||||
// 要列取文件的公共前缀
|
||||
$prefix = '';
|
||||
|
||||
// 上次列举返回的位置标记,作为本次列举的起点信息。
|
||||
$marker = '';
|
||||
|
||||
// 本次列举的条目数,,范围为 1-1000
|
||||
$limit = 100;
|
||||
|
||||
$delimiter = '/';
|
||||
|
||||
// 列举文件
|
||||
list($ret, $err) = $bucketManager->listFiles($bucket, $prefix, $marker, $limit, $delimiter);
|
||||
if ($err !== null) {
|
||||
echo "\n====> list file err: \n";
|
||||
var_dump($err);
|
||||
} else {
|
||||
if (array_key_exists('marker', $ret)) {
|
||||
echo "Marker:" . $ret["marker"] . "\n";
|
||||
}
|
||||
echo "\nList Iterms====>\n";
|
||||
}
|
||||
Reference in New Issue
Block a user