PHPでAWS S3からディレクトリ単位でダウンロード
前提条件
AWS SDK for PHP 3.x を利用
やってみた感想
CommandPool利用のために配列を作成する必要がなく
コードもシンプルになるのでよい
AWS S3 バケットを再帰的にダウンロード
同期転送
sample.php
<?php
use Aws\S3\S3Client;
use Aws\S3\Transfer;
$client = new S3Client([
'region' => '****',
'version' => 'latest',
]);
// from
$source = 's3://bucket/foo';
// to ローカルディレクトリのパス
$dest = '/path/to/destination/dir';
$manager = new Transfer(
$client,
$source,
$dest,
);
$manager->transfer();
非同期転送
sample.php
<?php
use Aws\S3\S3Client;
use Aws\S3\Transfer;
$client = new S3Client([
'region' => '****',
'version' => 'latest',
]);
// from
$source = 's3://bucket/foo';
// to ローカルディレクトリのパス
$dest = '/path/to/destination/dir';
$manager = new Transfer(
$client,
$source,
$dest,
);
$promise = $manager->promise();
$promise
->then(function () {
echo 'Done!';
})
->otherwise(function ($reason) {
echo 'Transfer failed';
});
参考
Author And Source
この問題について(PHPでAWS S3からディレクトリ単位でダウンロード), 我々は、より多くの情報をここで見つけました https://qiita.com/fujiimoon/items/dd741527d7ac8910e997著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .