Guest User

Untitled

a guest
Mar 16th, 2020
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. include("application/vendor/autoload.php");
  2.  
  3. use Aws\S3\S3Client;
  4.  
  5. class AWS_S3 {
  6.  
  7.     private $s3Client;
  8.  
  9.     public function __construct()
  10.     {
  11.     //Create an S3Client
  12.     $this->s3Client = S3Client::factory(array('profile' => 'default'));
  13.  
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment