1. Go to this page and download the library: Download iwai/aws-sdk-php-phalcon library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
iwai / aws-sdk-php-phalcon example snippets
ws\Phalcon\AwsServiceProvider;
use Phalcon\Mvc\Application;
$app = new Application();
$eventsManager = new Phalcon\Events\Manager();
$app->setEventsManager($eventsManager);
$eventsManager->attach("application:boot", new AwsServiceProvider(array(
'key' => 'your-aws-access-key-id',
'secret' => 'your-aws-secret-access-key',
'region' => 'us-east-1',
)));
echo $app->handle()->getContent();
// Get the Amazon S3 client
$s3 = $this->getDI()->get('aws')->get('s3');
// Create a list of the buckets in your account
$buckets = array();
foreach ($s3->getIterator('ListBuckets') as $bucket) {
$buckets[] = $bucket['Name'];
}
var_dump($buckets);
json
{
"wai/aws-sdk-php-phalcon": "*"
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.