Skip to content

Instantly share code, notes, and snippets.

@egulhan
Created June 30, 2014 11:54
Show Gist options
  • Save egulhan/4697d0373592e5c7fb0e to your computer and use it in GitHub Desktop.
Save egulhan/4697d0373592e5c7fb0e to your computer and use it in GitHub Desktop.
Make browser download a file without saving the it.
@source: http://php.net/manual/en/function.readfile.php
<?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