2023. 7. 19. 02:06

$s3Client = new S3Client([ 'profile' => 'default', 'region' => 'us-east-2', 'version' => '2006-03-01' ]);

 

$bucket = 'your-bucket';

$key = 'my-file.zip'; // Using stream instead of file path

$source = fopen('/path/to/large/file.zip', 'rb');

 

$uploader = new ObjectUploader( $s3Client, $bucket, $key, $source );

do {

    try {

        $result = $uploader->upload();

        if ($result["@metadata"]["statusCode"] == '200') {

            print('<p>File successfully uploaded to ' . $result["ObjectURL"] . '.</p>');

        }

        print($result);

       } catch (MultipartUploadException $e) {

           rewind($source);

           $uploader = new MultipartUploader($s3Client, $source, [ 'state' => $e->getState(), ]);

       }

} while (!isset($result));

 

fclose($source);