我想通过amazon s3
将文件上传到php webpage (php sdk)
。我的putobject代码显示了这个问题:
未捕获的异常'InvalidArgumentException'
带有消息'
在验证为PutObject提供的输入时发现1错误 操作:[Bucket]丢失,是一个必需的参数'in ..
但是,我已将所有参数输入为:
$s3->putObject([
'Bucket' => $config['s3']['bucket'], //bucket name
'Key' => '{$name}', //file name info
'Body' => fopen($temp_file_path, 'r'), //file path
'ACL' => 'public-read' ]);
这里的问题是什么?