我发现了这个http://knplabs.com/blog/give-your-projects-a-gaufrette
它提供的代码示例是
<?php
$amazon = new AmazonS3('myKey', 'mySecretKey', 'myToken');
$adapter = new Gaufrette\Adapter\AmazonS3($amazon, 'my_bucket');
$filesystem = new Gaufrette\Filesystem($adapter);
if ( ! $filesystem->has('foo')) {
$filesystem->write('foo', 'Some content');
}
echo $filesystem->read('foo');
这似乎不是在写入图像文件。
我还发现Gaufrette 上传图片并存储在 AmazonS3
但答案似乎倾向于为 Symfony 使用 Gaufrette 捆绑包。
我没有使用 Symfony,所以我希望有一个很好的例子可以用来通过 Gaufrette 将图像上传到 S3。
谢谢你。