PHP code example of buuum / amazons3
1. Go to this page and download the library: Download buuum/amazons3 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/ */
buuum / amazons3 example snippets
const ACL_PRIVATE = 'private';
const ACL_PUBLIC_READ = 'public-read';
const ACL_PUBLIC_READ_WRITE = 'public-read-write';
const ACL_AUTHENTICATED_READ = 'authenticated-read';
const STORAGE_CLASS_STANDARD = 'STANDARD';
const STORAGE_CLASS_RRS = 'REDUCED_REDUNDANCY';
const STORAGE_CLASS_STANDARD_IA = 'STANDARD_IA';
$s3 = new S3($config_key, $config_secret, $config_bucket);
$s3->setDefaultHeaders([
'Cache-Control' => 'max-age=2592000',
'Expires' => 2592000,
]);