Skip to content

Instantly share code, notes, and snippets.

@GerBawn
Created August 20, 2015 03:36
Show Gist options
  • Save GerBawn/7ea34873beb0901ed9cd to your computer and use it in GitHub Desktop.
Save GerBawn/7ea34873beb0901ed9cd to your computer and use it in GitHub Desktop.
php提供文件下载
<?php
$file = "/tmp/dummy.tar.gz";
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
header("Content-Length: ". filesize($file));
readfile($file);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment