<?php
require_once(APPPATH.'libraries/REST_Controller.php');
require 'vendor/autoload.php';
use Aws\S3\S3Client;
use Aws\S3\Exception\S3Exception;
$s3_config = array(
'key' => '*************',
'secret' => '*****************************');
$s3 = S3Client::factory([
'credentials' => [
'key' => $s3_config['key'],
'secret' => $s3_config['secret'],],
'region' => 'ap-northeast-2',
'version' => 'latest']);
function uploadS3($bucket, $dir, $file) {
$key = md5(uniqid());
$type = mime_content_type($file['tmp_name']);
$ext = explode('/', $type);
$ext = $ext[sizeof($ext) - 1];
$file_name = "{$key}.{$ext}";
$file_path = "./files/{$file_name}";
move_uploaded_file($file['tmp_name'], $file_path);
$save_path = null;
try {
$result = $GLOBALS['s3']->putObject([
'Bucket' => $bucket,
'Key' => "{$dir}/{$file_name}",
'Body' => fopen($file_path, 'rb'),
'ACL' => 'public-read']);
$save_path = $result['ObjectURL'];
} catch (S3Exception $e) {
// return null;
}
unlink($file_path);
return $save_path;
}
?>
这是我的代码 我也有关键和秘密。
我制作此图片并尝试上传图片文件。
if (isset($_FILES['ImageOneAdd'])) {
$ImageOneAdd = uploadS3('testbucket','image',$_FILES['ImageOneAdd']);
}
但在邮递员中,则会返回此信息。
{
"status": false,
"error": {
"classname": "InvalidArgumentException",
"message": "Found 1 error while validating the input provided for the PutObject operation:\n[Body] must be an fopen resource, a GuzzleHttp\\Stream\\StreamInterface object, or something that can be cast to a string. Found bool(false)"
}
}
我不知道为什么会出现这种问题。
我只是使用aws s3上传php API;
如果有人查看此代码,并且有任何错误,请帮助我
是的,我查看了这段代码,
try {
$result = $GLOBALS['s3']->putObject([
'Bucket' => $bucket,
'Key' => "{$dir}/{$file_name}",
'SourceFile' => $file_path,
'ACL' => 'public-read']);
$save_path = $result['ObjectURL'];
} catch (S3Exception $e) {
// return null;
}
但是它出现错误。
{
"status": false,
"error": {
"classname": "RuntimeException",
"message": "Unable to open ./files/40c0a29b0599204c147745116554af59.jpeg using mode r: fopen(./files/40c0a29b0599204c147745116554af59.jpeg): failed to open stream: No such file or directory"
}
}
答案 0 :(得分:2)
尝试使用以下代码上传文件,而不是阅读文件。
$result = $GLOBALS['s3']->putObject(array(
'Bucket' => $bucket,
'Key' => "{$dir}/{$file_name}",
'SourceFile' => $file_path
));
http://docs.aws.amazon.com/aws-sdk-php/v2/api/class-Aws.S3.S3Client.html#_putObject