88,190 Installs and Counting! Get Sparks Now!
Hey! Keep up to date with the project through its beta and public launch by following @getsparks.
Tweet
A Quick Looks At Sparks (EllisLab Official Post)
March 11, 2012
from: codeigniter.com
The Top Sparks of 2011
December 31, 2011
from: codefury.net
CodeIgniter Starter Project − A Starting Point for Any CI Dev
December 12, 2011
from: github.com
NetTuts+ Tutorial for GetSparks
November 24, 2011
from: net.tutsplus.com
Easily work with Amazon S3
| Contributor | : phused |
| : Log in to view | |
| Author Website | : http://prashant.es |
| Spark Website | : http://github.com/phused/CodeIgniter-S3 |
| Repository Type | : git |
| Number of Installs | : 676 |
php tools/spark install -v1.0.0 amazon-s3
Or download this version manually:
Get amazon-s3-1.0.0.zip
h1. Amazon S3 Library for CodeIgniter
Easily integrate your CI applications to Amazon's Simple Storage Solution with this library.
This library is (hardly) a port of "Donovan Schönknecht's S3 PHP Class":http://undesigned.org.za/2007/10/22/amazon-s3-php-class.
h2. Setup
h2. Class Methods
For more detailed information about the required parameters and returns check the S3.php file.
h3. Objects: * copyObject * deleteObject * getObject * getObjectInfo * inputFile * inputResource * putObject * getAuthenticatedURL
h3. Buckets:
h3. Access Control Policies:
h3. CloudFront:
h3. Legacy methods:
h2. Example Usage
// Load Library $this->load->library('s3');
// Create a Bucket vardump($this->s3->putBucket('My-Bucket', $this->s3->ACLPUBLIC_READ));
// List Buckets var_dump($this->s3->listBuckets());
h2. References