简介
本文档提供快捷查询某个存储桶是否存在的示例代码。
HeadBucket除了检查存储桶是否存在,还可以判断是否有权限访问存储桶,有以下几种情况:
存储桶存在且有读取权限,返回 HTTP 状态码为200。
无存储桶读取权限,返回 HTTP 状态码为403。
存储桶不存在,返回 HTTP 状态码为404。
检查存储桶是否存在
功能说明
检查存储桶是否存在。
方法原型
public Guzzle\\Service\\Resource\\Model doesBucketExist(array $args = array());
示例代码
<?php
require dirname(__FILE__) . '/../vendor/autoload.php';
$secretId = "SECRETID";
$secretKey = "SECRETKEY";
$region = "ap-beijing";
$cosClient = new Qcloud\\Cos\\Client(
array(
'region' => $region,
'schema' => 'https',
'credentials'=> array(
'secretId' => $secretId ,
'secretKey' => $secretKey)));
try {
$result = $cosClient->doesBucketExist(
'examplebucket-125000000'
); ;
print_r($result);
} catch (\\Exception $e) {
echo($e);
}
本页内容是否解决了您的问题?