以下是来自 Amazon S3 API 文档的示例代码。
$s3 = new AmazonS3();
$bucket = 'my-bucket' . strtolower($s3->key);
$response = $s3->create_object($bucket, 'prefix with spaces with spaces.txt', array(
'body' => 'This is my body text.'
));
// Success?
var_dump($response->isOK());
这在实时站点上有效,但在本地主机上,后者给出了一个错误,提示找不到存储桶
$s3 = new AmazonS3();
$bucket = 'my-bucket';
$response = $s3->create_object($bucket, 'prefix with spaces with spaces.txt', array(
'body' => 'This is my body text.'
));
// 成功?
但删除 . strtolower($s3->key);
作品