如何使用Zend_Service_Amazon_S3创建欧洲Amazon S3 Bucket

时间:2011-11-07 12:10:33

标签: php zend-framework amazon-s3

使用Zend_Service_Amazon_S3,您可以使用以下代码创建一个存储桶:

$s3 = new Zend_Service_Amazon_S3($key, $secretKey);
$s3->createBucket('my-fantastic-bucket');

createBucket的第二个参数是'location'。在欧洲(爱尔兰)需要哪个值来创建桶?

1 个答案:

答案 0 :(得分:2)

您提供实际位置的位置名称。

每个位置都有一个名称,您只需输入该名称即可。

http://docs.amazonwebservices.com/AmazonS3/latest/API/index.html?RESTBucketPUT.html

Specifies the Region where the bucket will be created


Valid Values: EU | us-west-1 | ap-southeast-1 | ap-northeast-1 | empty string (for the US Classic Region)

Default: US Standard

Ancestor: CreateBucketConfiguration

所以你的代码可以是这样的:

$s3 = new Zend_Service_Amazon_S3($key, $secretKey);
$s3->createBucket('my-fantastic-bucket', 'us-west-1');