Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- include("application/vendor/autoload.php");
- use Aws\S3\S3Client;
- class AWS_S3 {
- private $s3Client;
- public function __construct()
- {
- //Create an S3Client
- $this->s3Client = S3Client::factory(array('profile' => 'default'));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment