PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Example #2 and #3 | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Example #2 and #3

The following examples illustrates how to retrieve all objects of a given S3 bucket. All you need to replace in the snippet are the $bucket, $key and $secret variables.

Retrieving all objects from a bucket in S3

<?php
require_once 'Services/Amazon/S3.php';

$key    'your key';
$secret 'your secret';
$bucket 'foobar';

$s3     Services_Amazon_S3::getAccount($key$secret);
$bucket $s3->getBucket($bucket);

echo 
'<ul>';
foreach (
$bucket->getObjects() as $object) {
    echo 
"<li>{$object->name}</li>";
}
echo 
'</ul>';

?>

This example details how to retrieve the meta of the objects - for example, size, mimetype, etc..

Retrieving all objects meta data from a bucket in S3

<?php
require_once 'Services/Amazon/S3.php';

$key    'your key';
$secret 'your secret';
$bucket 'foobar';

$s3     Services_Amazon_S3::getAccount($key$secret);
$bucket $s3->getBucket($bucket);

echo 
'<ul>';
foreach (
$bucket->getObjects() as $object) {
    
$object->load(Services_Amazon_S3_Resource_Object::LOAD_METADATA_ONLY);

    echo 
"<li>{$object->name}{$object->size} bytes ({$object->contentType})</li>";
}
echo 
'</ul>';

?>

The following example illustrates how to create an access URL to the objects, with a TTL (time to live, expire time).

Retrieving all objects from a bucket in S3

<?php
require_once 'Services/Amazon/S3.php';

$key    'your key';
$secret 'your secret';
$bucket 'foobar';

$s3     Services_Amazon_S3::getAccount($key$secret);
$bucket $s3->getBucket($bucket);

echo 
'<ul>';
foreach (
$bucket->getObjects() as $object) {

    
$url $object->getSignedUrl(120); // expire in 2 minutes

    
echo "<li>{$object->name}";
    echo 
'<a href="' $url '">download it (link is valid for 2 minutes)</a>";
    echo "</li>";
}
echo '
</ul>';

?>
忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Example #2 and #3」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Example #2 and #3」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: