Programmer's Reference Guide
| Zend_Service_Amazon_Ec2: Security Groups |
Zend_Service_Amazon_S3
Introduction
Amazon S3 provides a simple web services interface that can be used to store and retrieve any amount of data, at any time, from anywhere on the web. It gives any developer access to the same highly scalable, reliable, fast, inexpensive data storage infrastructure that Amazon uses to run its own global network of web sites. The service aims to maximize benefits of scale and to pass those benefits on to developers.
Registering with Amazon S3
Before you can get started with Zend_Service_Amazon_S3, you must first register for an account. Please see the » S3 FAQ page on the Amazon website for more information.
After registering, you will receive an application key and a secret key. You will need both to access the S3 service.
API Documentation
The Zend_Service_Amazon_S3 class provides the PHP wrapper to the Amazon S3 REST interface. Please consult the » Amazon S3 documentation for detailed description of the service. You will need to be familiar with basic concepts in order to use this service.
Features
Zend_Service_Amazon_S3 provides the following functionality:
-
A single point for configuring your amazon.s3 authentication credentials that can be used across the amazon.s3 namespaces.
-
A proxy object that is more convenient to use than an HTTP client alone, mostly removing the need to manually construct HTTP POST requests to access the REST service.
-
A response wrapper that parses each response body and throws an exception if an error occurred, alleviating the need to repeatedly check the success of many commands.
-
Additional convenience methods for some of the more common operations.
Getting Started
Once you have registered with Amazon S3, you're ready to store your first data object on the S3. The objects on S3 are stored in containers, called "buckets". Bucket names are unique on S3, and each user can have no more than 100 buckets simultaneously. Each bucket can contain unlimited amount of objects, identified by name.
The following example demonstrates creating a bucket, storing and retrieving the data.
Example #1 Zend_Service_Amazon_S3 Usage Example
- require_once 'Zend/Service/Amazon/S3.php';
- $s3 = new Zend_Service_Amazon_S3($my_aws_key, $my_aws_secret_key);
- $s3->createBucket("my-own-bucket");
- $s3->putObject("my-own-bucket/myobject", "somedata");
Since Zend_Service_Amazon_S3 service requires authentication, you should pass your credentials (AWS key and secret key) to the constructor. If you only use one account, you can set default credentials for the service:
- require_once 'Zend/Service/Amazon/S3.php';
- Zend_Service_Amazon_S3::setKeys($my_aws_key, $my_aws_secret_key);
- $s3 = new Zend_Service_Amazon_S3();
Bucket operations
All objects in S3 system are stored in buckets. Bucket has to be created before any storage operation. Bucket name is unique in the system, so you can not have bucket named the same as someone else's bucket.
Bucket name can contain lowercase letters, digits, periods (.), underscores (_), and dashes (-). No other symbols allowed. Bucket name should start with letter or digit, and be 3 to 255 characters long. Names looking like an IP address (e.g. "192.168.16.255") are not allowed.
-
createBucket() creates a new bucket.
-
cleanBucket() removes all objects that are contained in a bucket.
-
removeBucket() removes the bucket from the system. The bucket should be empty to be removed.
Example #2 Zend_Service_Amazon_S3 Bucket Removal Example
- require_once 'Zend/Service/Amazon/S3.php';
- $s3 = new Zend_Service_Amazon_S3($my_aws_key, $my_aws_secret_key);
- $s3->cleanBucket("my-own-bucket");
- $s3->removeBucket("my-own-bucket");
-
getBuckets() returns the list of the names of all buckets belonging to the user.
Example #3 Zend_Service_Amazon_S3 Bucket Listing Example
- require_once 'Zend/Service/Amazon/S3.php';
- $s3 = new Zend_Service_Amazon_S3($my_aws_key, $my_aws_secret_key);
- $list = $s3->getBuckets();
- foreach($list as $bucket) {
- echo "I have bucket $bucket\n";
- }
-
isBucketAvailable() check if the bucket exists and returns true if it does.
Object operations
The object is the basic storage unit in S3. Object stores unstructured data, which can be any size up to 4 gigabytes. There's no limit on how many objects can be stored on the system.
The object are contained in buckets. Object is identified by name, which can be any utf-8 string.
It is common to use hierarchical names (such as Pictures/Myself/CodingInPHP.jpg) to
organise object names. Object name is prefixed with bucket name when using object functions, so for
object "mydata" in bucket "my-own-bucket" the name would be my-own-bucket/mydata.
Objects can be replaced (by rewriting new data with the same key) or deleted, but not modified, appended, etc. Object is always stored whole.
By default, all objects are private and can be accessed only by their owner. However, it is possible
to specify object with public access, in which case it will be available through the URL:
http://s3.amazonaws.com/[bucket-name]/[object-name].
-
putObject($object, $data, $meta) created an object with name $object (should contain the bucket name as prefix!) having $data as its content.
Optional $meta parameter is the array of metadata, which currently supports the following parameters as keys:
- S3_CONTENT_TYPE_HEADER
-
MIME content type of the data. If not specified, the type will be guessed according to the file extension of the object name.
- S3_ACL_HEADER
-
The access to the item. Following access constants can be used:
- S3_ACL_PRIVATE
-
Only the owner has access to the item.
- S3_ACL_PUBLIC_READ
-
Anybody can read the object, but only owner can write. This is setting may be used to store publicly accessible content.
- S3_ACL_PUBLIC_WRITE
-
Anybody can read or write the object. This policy is rarely useful.
- S3_ACL_AUTH_READ
-
Only the owner has write access to the item, and other authenticated S3 users have read access. This is useful for sharing data between S3 accounts without exposing them to the public.
Example #4 Zend_Service_Amazon_S3 Public Object Example
- require_once 'Zend/Service/Amazon/S3.php';
- $s3 = new Zend_Service_Amazon_S3($my_aws_key, $my_aws_secret_key);
- Zend_Service_Amazon_S3::S3_ACL_PUBLIC_READ));
- // or:
- $s3->putFile("me.png", "my-own-bucket/Pictures/Me.png",
- Zend_Service_Amazon_S3::S3_ACL_PUBLIC_READ));
- echo "Go to http://s3.amazonaws.com/my-own-bucket/Pictures/Me.png to see me!\n";
-
getObject($object) retrieves object data from the storage by name.
-
removeObject($object) removes the object from the storage.
-
getInfo($object) retrieves the metadata information about the object. The function will return array with metadata information. Some of the useful keys are:
-
type -
The MIME type of the item.
-
size -
The size of the object data.
-
mtime -
UNIX-type timestamp of the last modification for the object.
-
etag -
The ETag of the data, which is the MD5 hash of the data, surrounded by quotes (").
-
-
getObjectsByBucket($bucket) returns the list of the object keys, contained in the bucket.
Example #5 Zend_Service_Amazon_S3 Object Listing Example
-
isObjectAvailable($object) checks if the object with given name exists.
-
putFile($path, $object, $meta) puts the content of the file in $path into the object named $object.
The optional $meta argument is the same as for
putObject. If the content type is omitted, it will be guessed basing on the source file name.
Stream wrapper
In addition to the interfaces described above, Zend_Service_Amazon_S3 also supports operating as a stream wrapper. For this, you need to register the client object as the stream wrapper:
Example #6 Zend_Service_Amazon_S3 Streams Example
- require_once 'Zend/Service/Amazon/S3.php';
- $s3 = new Zend_Service_Amazon_S3($my_aws_key, $my_aws_secret_key);
- $s3->registerStreamWrapper("s3");
- file_put_contents("s3://my-own-bucket/testdata", "mydata");
Directory operations (mkdir, rmdir, opendir, etc.)
will operate on buckets and thus their arguments should be of the form of s3://bucketname.
File operations operate on objects. Object creation, reading, writing, deletion, stat and
directory listing is supported.
| Zend_Service_Amazon_Ec2: Security Groups |
Select a Version
Languages Available
Components
Search the Manual
Navigation
- Programmer's Reference Guide
- Programmer's Reference Guide
- Zend_Service
- Introduction
- Zend_Service_Akismet
- Zend_Service_Amazon
- Zend_Service_Amazon_Ec2
- Zend_Service_Amazon_Ec2: Instances
- Zend_Service_Amazon_Ec2: Windows Instances
- Zend_Service_Amazon_Ec2: Reserved Instances
- Zend_Service_Amazon_Ec2: CloudWatch Monitoring
- Zend_Service_Amazon_Ec2: Amazon Machine Images (AMI)
- Zend_Service_Amazon_Ec2: Elastic Block Stroage (EBS)
- Zend_Service_Amazon_Ec2: Elastic IP Addresses
- Zend_Service_Amazon_Ec2: Keypairs
- Zend_Service_Amazon_Ec2: Regions and Availability Zones
- Zend_Service_Amazon_Ec2: Security Groups
- Zend_Service_Amazon_S3
- Zend_Service_Amazon_Sqs
- Zend_Service_Audioscrobbler
- Zend_Service_Delicious
- Zend_Service_Flickr
- Zend_Service_Nirvanix
- Zend_Service_ReCaptcha
- Zend_Service_Simpy
- Introduction
- Zend_Service_StrikeIron
- Zend_Service_StrikeIron: Bundled Services
- Zend_Service_StrikeIron: Advanced Uses
- Zend_Service_Technorati
- Zend_Service_Twitter
- Zend_Service_Yahoo
