Upload file on amazon S3 with PHP SDK(使用 PHP SDK 在亚马逊 S3 上上传文件)
问题描述
我正在尝试通过他们的 PHP SDK 在我的亚马逊 S3 上上传图片.所以我做了一个小脚本来做到这一点.但是,我的脚本不起作用,我的异常也没有给我发回任何错误消息.
I'm trying to upload a picture on my amazon S3 via their PHP SDK. So I made a little script to do so. However, my script doesn't work and my exception doesn't send me back any error message.
我是 AWS 新手,感谢您的帮助.
I'm new with AWS thank you for your help.
代码如下:
配置.php
<?php
return array(
'includes' => array('_aws'),
'services' => array(
'default_settings' => array(
'params' => array(
'key' => 'PUBLICKEY',
'secret' => 'PRIVATEKEY',
'region' => 'eu-west-1'
)
)
)
);
?>
索引.php
<?php
//Installing AWS SDK via phar
require 'aws.phar';
use AwsS3S3Client;
use AwsS3ExceptionS3Exception;
$bucket = 'infact';
$keyname = 'myImage';
// $filepath should be absolute path to a file on disk
$filepath = 'image.jpg';
// Instantiate the client.
$s3 = S3Client::factory('config.php');
// Upload a file.
try {
$result = $s3->putObject(array(
'Bucket' => $bucket,
'Key' => $keyname,
'SourceFile' => $filePath,
'ContentType' => 'text/plain',
'ACL' => 'public-read',
'StorageClass' => 'REDUCED_REDUNDANCY'
));
// Print the URL to the object.
echo $result['ObjectURL'] . "
";
} catch (S3Exception $e) {
echo $e->getMessage() . "
";
}
?>
我现在正在使用此代码,但它仍然无法正常工作.我什至没有错误或异常消息.
EDIT : I'm now using this code but its still not working. I don't even have error or exception message.
<?php
require 'aws.phar';
use AwsS3S3Client;
use AwsS3ExceptionS3Exception;
$bucket = 'infactr';
$keyname = 'sample';
// $filepath should be absolute path to a file on disk
$filepath = 'image.jpg';
// Instantiate the client.
$s3 = S3Client::factory(array(
'key' => 'key',
'secret' => 'privatekey',
'region' => 'eu-west-1'
));
try {
// Upload data.
$result = $s3->putObject(array(
'Bucket' => $bucket,
'Key' => $keyname,
'SourceFile' => $filePath,
'ACL' => 'public-read',
'ContentType' => 'image/jpeg'
));
// Print the URL to the object.
echo $result['ObjectURL'] . "
";
} catch (S3Exception $e) {
echo $e->getMessage() . "
";
}
?>
推荐答案
尝试这样的事情(来自 AWS 文档):
Try something like this (from the AWS docs):
<?php
require 'aws.phar';
use AwsS3S3Client;
use AwsS3ExceptionS3Exception;
$bucket = '<your bucket name>';
$keyname = 'sample';
// $filepath should be absolute path to a file on disk
$filepath = '/path/to/image.jpg';
// Instantiate the client.
$s3 = S3Client::factory(array(
'key' => 'your AWS access key',
'secret' => 'your AWS secret access key'
));
try {
// Upload data.
$result = $s3->putObject(array(
'Bucket' => $bucket,
'Key' => $keyname,
'SourceFile' => $filepath,
'ACL' => 'public-read'
));
// Print the URL to the object.
echo $result['ObjectURL'] . "
";
} catch (S3Exception $e) {
echo $e->getMessage() . "
";
}
?>
只要您拥有正确的凭据,它就可以正常工作.请记住,密钥名称是您在 S3 中文件的名称,因此如果您想让您的密钥与您的文件具有相同的名称,您必须执行以下操作:$keyname = 'image.jpg';代码> .此外,jpg 通常不是 plain/text 文件类型,您可以省略该 Content-type 字段,或者您可以简单地指定:image/jpeg代码>
It works fine for me as long as you have the right credentials. Keep in mind that the key name is the name of your file in S3 so if you want to have your key have the same name of your file you have to do something like: $keyname = 'image.jpg'; . Also, a jpg is generally not a plain/text file type, you can ommit that Content-type field or you can just simply specify: image/jpeg
这篇关于使用 PHP SDK 在亚马逊 S3 上上传文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 PHP SDK 在亚马逊 S3 上上传文件
基础教程推荐
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
