本文整理汇总了PHP中Aws\S3\S3Client::headBucket方法的典型用法代码示例。如果您正苦于以下问题:PHP S3Client::headBucket方法的具体用法?PHP S3Client::headBucket怎么用?PHP S3Client::headBucket使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Aws\S3\S3Client
的用法示例。
在下文中一共展示了S3Client::headBucket方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testPutBucketLocation
/**
* @depends testHeadBucket
*/
public function testPutBucketLocation()
{
$this->log(__METHOD__);
$bucketName = self::getResourcePrefix() . '-s3eutest';
try {
$this->client->headBucket(array('Bucket' => $bucketName));
} catch (\Exception $e) {
$this->client->createBucket(array('Bucket' => $bucketName, 'LocationConstraint' => 'EU'));
}
$this->client->waitUntil('bucket_exists', array('Bucket' => $bucketName));
$result = $this->client->getBucketLocation(array('Bucket' => $bucketName));
$this->assertEquals('EU', $result['Location']);
$this->client->deleteBucket(array('Bucket' => $bucketName));
}
示例2: head
/**
* head
*
* @return \Guzzle\Service\Resource\Model
*/
public function head()
{
return $this->client->headBucket(['Bucket' => $this->name]);
}
示例3: testSignsEmptyRequests
public function testSignsEmptyRequests()
{
$this->client->headBucket(array('Bucket' => $this->bucket));
}
示例4: bucketExists
protected function bucketExists(Bucket $bucket, S3Client $client)
{
// AWS will throw an Exception if the Bucket doesn't exist or we do not have access to it.
$response = $client->headBucket(array('Bucket' => $bucket->getName()));
return true;
}