Open-Source PHP Framework - Designed for rapid development of performance-oriented scalable applications

App Directory >> Zend Framework Amazon S3 + Crypt + Hmac by Derick RethansDerick Rethans

Download this App

Requirements:
  • Amazon S3
package
zend framework amazon s3
version
1.0.0
license
New BSD

Zend Framework Amazon S3 + Crypt + Hmac

Zend Framework Amazon S3 class isolated from ZF dependencies to work in Vork


Zend Service Amazon also includes:

Example:

if (!class_exists('Zend_Service_Amazon_S3')) {
    require 
get::$config->packagesPath() . 'zendframework/s3.php';
    
$s3 = new Zend_Service_Amazon_S3($amazonAccessKey$amazonSecretKey);
    
$s3->registerStreamWrapper('s3');
}
$filePath 's3://exampleS3repository/myfile.txt';
readfile($filePath);