Skip to content

Instantly share code, notes, and snippets.

@filviu
Created February 12, 2015 08:34
Show Gist options
  • Save filviu/5dd38224dc22717e1c6b to your computer and use it in GitHub Desktop.
Save filviu/5dd38224dc22717e1c6b to your computer and use it in GitHub Desktop.
Push a file as a download from php. Useful to force a download on the brain-dead android.
<?php
$file = 'somefile.txt';
header("Content-Description: File Transfer");
header("Content-Type: application/octet-stream");
header('Content-Disposition: attachment; filename="'.basename($file).'"');
readfile($file);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment