我想使用PHP SDK将外部URL中的文件直接上传到Amazon S3存储桶。我设法使用以下代码执行此操作:
$s3 = new AmazonS3();
$response = $s3->create_object($bucket, $destination, array(
'fileUpload' => $source,
'length' => remote_filesize($source),
'contentType' => 'image/jpeg'
));
函数remote_filesize如下:
function remote_filesize($url) {
ob_start();
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 1);
$ok = curl_exec($ch);
curl_close($ch);
$head = ob_get_contents();
ob_end_clean();
$regex = '/Content-Length:\s([0-9].+?)\s/';
$count = preg_match($regex, $head, $matches);
return isset($matches[1]) ? $matches[1] : "unknown";
}
但是,如果我可以在上传到亚马逊时跳过设置文件大小,那将是很好的,因为这样可以节省我自己的服务器之旅。但是,如果我删除设置长度' $ s3-> create_object函数中的属性,我收到一条错误消息,指出无法确定流式上传的流大小。'任何想法如何解决这个问题?
答案 0 :(得分:2)
你可以像这样直接将文件从url上传到Amazon S3(我的例子是jpg图片):
<强> 1。从二进制文件中转换内容
$binary = file_get_contents('http://the_url_of_my_image.....');
<强> 2。使用 body 创建一个S3对象,将二进制文件传递到
$s3 = new AmazonS3();
$response = $s3->create_object($bucket, $filename, array(
'body' => $binary, // put the binary in the body
'contentType' => 'image/jpeg'
));
这就是全部而且非常快。享受!
答案 1 :(得分:0)
您是否可以控制远程服务器/主机?如果是这样,你可以设置一个php服务器来在本地查询文件并将数据传递给你。
如果没有,你可以像curl一样使用像这样检查标题;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://sstatic.net/so/img/logo.png');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$size = curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD);
var_dump($size);
这样,您正在使用HEAD请求,而不是下载整个文件 - 仍然依赖于远程服务器发送正确的Content-length头。