2

我想将文件上传到amazon s3via php webpage (php sdk)。我的 putobject 代码显示了这个问题:

未捕获的异常“InvalidArgumentException”

带有消息'

验证为 PutObject 操作提供的输入时发现 1 个错误:[Bucket] 丢失并且是 .. 中的必需参数

但是,我已将所有参数输入为:

$s3->putObject([            
'Bucket' => $config['s3']['bucket'], //bucket name
            'Key' => '{$name}',     //file name info    
            'Body' => fopen($temp_file_path, 'r'), //file path  
            'ACL' => 'public-read' ]);

这里有什么问题?

4

0 回答 0