Skip to content

Instantly share code, notes, and snippets.

@buonzz
Created April 9, 2014 09:15
Show Gist options
  • Save buonzz/10245645 to your computer and use it in GitHub Desktop.
Save buonzz/10245645 to your computer and use it in GitHub Desktop.
readfile
<?php
$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment