# Amazon S3 code examples for the SDK for PHP ## Overview Shows how to use the AWS SDK for PHP to work with Amazon Simple Storage Service (Amazon S3). _Amazon S3 is storage for the internet. You can use Amazon S3 to store and retrieve any amount of data at any time, from anywhere on the web._ ## ⚠ Important * Running this code might result in charges to your AWS account. For more details, see [AWS Pricing](https://aws.amazon.com/pricing/) and [Free Tier](https://aws.amazon.com/free/). * Running the tests might result in charges to your AWS account. * We recommend that you grant your code least privilege. At most, grant only the minimum permissions required to perform the task. For more information, see [Grant least privilege](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege). * This code is not tested in every AWS Region. For more information, see [AWS Regional Services](https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services). ## Code examples ### Prerequisites For prerequisites, see the [README](../../README.md#Prerequisites) in the `php` folder. ### Get started - [Hello Amazon S3](helloS3.php#L5) (`ListBuckets`) ### Basics Code examples that show you how to perform the essential operations within a service. - [Learn the basics](GettingStartedWithS3.php) ### Single actions Code excerpts that show you how to call individual service functions. - [CopyObject](GettingStartedWithS3.php#L104) - [CreateBucket](GettingStartedWithS3.php#L61) - [DeleteBucket](GettingStartedWithS3.php#L52) - [DeleteObject](S3Service.php#L258) - [DeleteObjects](GettingStartedWithS3.php#L52) - [GetObject](GettingStartedWithS3.php#L52) - [ListObjectsV2](GettingStartedWithS3.php#L52) - [PutObject](GettingStartedWithS3.php#L52) ### Scenarios Code examples that show you how to accomplish a specific task by calling multiple functions within the same service. - [Create a presigned URL](S3Service.php) - [Create a serverless application to manage photos](../../applications/photo_asset_manager) ## Run the examples ### Instructions #### Hello Amazon S3 This example shows you how to get started using Amazon S3. #### Learn the basics This example shows you how to do the following: - Create a bucket and upload a file to it. - Download an object from a bucket. - Copy an object to a subfolder in a bucket. - List the objects in a bucket. - Delete the bucket objects and the bucket. #### Create a presigned URL This example shows you how to create a presigned URL for Amazon S3 and upload an object. #### Create a serverless application to manage photos This example shows you how to create a serverless application that lets users manage photos using labels. ### Tests ⚠ Running tests might result in charges to your AWS account. To find instructions for running these tests, see the [README](../../README.md#Tests) in the `php` folder. ## Additional resources - [Amazon S3 User Guide](https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html) - [Amazon S3 API Reference](https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html) - [SDK for PHP Amazon S3 reference](https://docs.aws.amazon.com/aws-sdk-php/v3/api/namespace-Aws.S3.html) --- Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: Apache-2.0