Skip to content

Instantly share code, notes, and snippets.

@millsy
Created March 29, 2012 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save millsy/2237776 to your computer and use it in GitHub Desktop.
Save millsy/2237776 to your computer and use it in GitHub Desktop.
amazon s3 php get url of file
<?php
require_once 'sdk.class.php';
$s3 = new AmazonS3();
$s3url = $s3->get_object_url('mybucket', 'mypath/tofile.txt', '5 minutes');
echo $s3url;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment