Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18858 программистов и 1635 роботов. Сейчас ищут 1990 программистов ...

Example #1

Вернуться к: Services_Amazon_S3

Retrieving all buckets from a S3 account

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

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

$key    'your key';
$secret 'your secret';

$s3 Services_Amazon_S3::getAccount($key$secret);

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

?>


Вернуться к: Services_Amazon_S3

© 2025 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware