PHP獲取存儲(chǔ)空間信息
更新時(shí)間:
存儲(chǔ)空間(Bucket)是存儲(chǔ)對(duì)象(Object)的容器。本文介紹如何獲取存儲(chǔ)空間的信息。
注意事項(xiàng)
本文以華東1(杭州)外網(wǎng)Endpoint為例。如果您希望通過與OSS同地域的其他阿里云產(chǎn)品訪問OSS,請(qǐng)使用內(nèi)網(wǎng)Endpoint。關(guān)于OSS支持的Region與Endpoint的對(duì)應(yīng)關(guān)系,請(qǐng)參見OSS訪問域名、數(shù)據(jù)中心、開放端口。
本文以OSS域名新建OSSClient為例。如果您希望通過自定義域名、STS等方式新建OSSClient,請(qǐng)參見新建OssClient。
要獲取存儲(chǔ)空間的信息,您必須具有
oss:GetBucketInfo
權(quán)限。具體操作,請(qǐng)參見為RAM用戶授權(quán)自定義的權(quán)限策略。
示例代碼
以下代碼用于獲取存儲(chǔ)空間的信息:
<?php
if (is_file(__DIR__ . '/../autoload.php')) {
require_once __DIR__ . '/../autoload.php';
}
if (is_file(__DIR__ . '/../vendor/autoload.php')) {
require_once __DIR__ . '/../vendor/autoload.php';
}
use OSS\Credentials\EnvironmentVariableCredentialsProvider;
use OSS\OssClient;
use OSS\Core\OssException;
// 從環(huán)境變量中獲取訪問憑證。運(yùn)行本代碼示例之前,請(qǐng)確保已設(shè)置環(huán)境變量OSS_ACCESS_KEY_ID和OSS_ACCESS_KEY_SECRET。
$provider = new EnvironmentVariableCredentialsProvider();
// Endpoint以華東1(杭州)為例,其它Region請(qǐng)按實(shí)際情況填寫。
$endpoint = "https://oss-cn-hangzhou.aliyuncs.com";
// 填寫存儲(chǔ)空間名稱,例如examplebucket。
$bucket= "examplebucket";
try {
$config = array(
"provider" => $provider,
"endpoint" => $endpoint,
"signatureVersion" => OssClient::OSS_SIGNATURE_VERSION_V4,
"region"=> "cn-hangzhou"
);
$ossClient = new OssClient($config);
// 獲取存儲(chǔ)空間的信息,包括存儲(chǔ)空間名稱(Name)、所在地域(Location)、創(chuàng)建日期(CreateDate)、存儲(chǔ)類型(StorageClass)、外網(wǎng)訪問域名(ExtranetEndpoint)以及內(nèi)網(wǎng)訪問域名(IntranetEndpoint)等。
$info = $ossClient->getBucketInfo($bucket);
printf("bucket name:%s\n", $info->getName());
printf("bucket location:%s\n", $info->getLocation());
printf("bucket creation time:%s\n", $info->getCreateDate());
printf("bucket storage class:%s\n", $info->getStorageClass());
printf("bucket extranet endpoint:%s\n", $info->getExtranetEndpoint());
printf("bucket intranet endpoint:%s\n", $info->getIntranetEndpoint());
} catch (OssException $e) {
printf(__FUNCTION__ . ": FAILED\n");
printf($e->getMessage() . "\n");
return;
}
print(__FUNCTION__ . ": OK" . "\n");
相關(guān)文檔
關(guān)于獲取存儲(chǔ)空間信息的完整示例代碼,請(qǐng)參見GitHub示例。
關(guān)于獲取存儲(chǔ)空間信息的API接口說明,請(qǐng)參見GetBucketInfo。
文檔內(nèi)容是否對(duì)您有幫助?