我正在尝试使用适用于PHP的SDK从AWS S3下载对象。
$filename = "filename with spaces in it.jpg";
$src = "path/from/bucket-root/".$filename;
$result = S3Client->getObject([
'Bucket' => 'my-bucket-name',
'Key' => $src
]);
运行此命令时,出现错误:
Error executing "GetObject" ... GET filename%20with%20spaces%20in%20it.jpg resulted in a 404 Not Found response:
S3客户端正在对空格进行编码,但是无法解析路径。
我尝试了以下所有方法:
$filename = urlencode("filename with spaces in it.jpg");
$filename = urldecode("filename with spaces in it.jpg");
$filename = addslashes("filename with spaces in it.jpg");
$filename = str_replace(' ','+',"filename with spaces in it.jpg");
还有几种组合-我此时只是在墙上扔杂物。
我的关键路径和存储桶名称/路由正确,因为我能够成功获取对象,而文件名中没有空格。
如何使用文件名中的空格来捕获该对象?
答案 0 :(得分:0)
它实际上不需要任何空格替换,这是工作代码
<?php
require 'aws/aws-autoloader.php';
use Aws\S3\S3Client;
use Aws\S3\Exception\S3Exception;
$bucket = 'avitest29oct2018';
$keyname = 'hello there.txt';
$s3 = new S3Client([
'version' => 'latest',
'region' => 'us-west-2',
'credentials' => false
]);
try {
// Get the object.
$result = $s3->getObject([
'Bucket' => $bucket,
'Key' => $keyname
]);
// Display the object in the browser.
header("Content-Type: {$result['ContentType']}");
echo $result['Body'];
} catch (S3Exception $e) {
echo $e->getMessage() . PHP_EOL;
}
?>
注意:-
不确定它是否与您使用的aws sdk有关,可以通过多种方式为PHP安装aws sdk,如何安装它?我使用了3rd method(使用zip文件)