Skip to content

Instantly share code, notes, and snippets.

@nomaster
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nomaster/747feb3c2aacee37d782 to your computer and use it in GitHub Desktop.
Save nomaster/747feb3c2aacee37d782 to your computer and use it in GitHub Desktop.
Stream file in PHP
<?php
streamfile() {
header( 'Content-Length: '.filesize($file) );
header( 'Content-Type: application/octet-stream' );
header( 'Content-Disposition: attachment; filename='.$filename );
readfile( $file );
exit;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment