使用 php sdk 将文件直接上传到 AWS S3 中的文件夹的语法是什么?
我使用以下方法成功上传到存储桶:
$response = $s3->create_object($bucket, $file_name, array('fileUpload' => $file_path))
发送!
使用 php sdk 将文件直接上传到 AWS S3 中的文件夹的语法是什么?
我使用以下方法成功上传到存储桶:
$response = $s3->create_object($bucket, $file_name, array('fileUpload' => $file_path))
发送!
试试这个方法
$s3->create_object($bucket, 'folder/filename', $options)
只需做 1 件事,添加 'path/' 例如:如果您在存储桶中有一个文件夹 'videos',那么您必须在 'key' =>'videos/video-name-here' 中添加这样的路径。
try {
// Upload data.
$result = $s3Client->putObject([
'Bucket' => bucket-name,
'Key' => 'videos/video-name', //add path here
'Body' => fopen($video, 'r'),
'ACL' => 'public-read'
]);
print_r($result['ObjectURL']);
} catch (S3Exception $e) {
echo $e->getMessage() . PHP_EOL;
}
这是您可以尝试的另一种方法
$this->Aws->bucket = 'bucket'
$old_file = $dir. '/'.old_file_name;
$new_file = $dir. '/'.new_file_name;
$file_permission = 'private';
$this->Aws->upload($old_file , $new_file , $file_permission);