实现文件下载功能 PHP 代码片断

网站有从远程服务器通过http下载文件的需求,于是写了个提供文件下载的脚本,下面我们来看看用PHP如何实现文件下载功能的.

偶尔用用PHP写点这种很小很小的Web程序,还是蛮简单方便的.

PHP实现文件下载功能的代码如下:

  1. <?php
  2. $base_dir = "/usr/share/nginx/html/";
  3. $myfile = $base_dir . $_GET["file"];
  4. //echo $myfile;
  5. //开源软件:phpfensi.com
  6. if( ! file_exists($myfile) ) {
  7. echo "file: " . $myfile . " doesn't exist.";
  8. } elseif ( is_dir($myfile) ) {
  9. echo "file: " . $myfile . " is a directory.";
  10. } else {
  11. header("Content-type: application/octet-stream");
  12. header('Content-Disposition: attachment; filename="' . basename($myfile) . '"');
  13. header("Content-Length: ". filesize($myfile));
  14. readfile($myfile);
  15. }
  16. ?>

github:https://github.com/smilejay/other-code/blob/master/php/download.php

另外,一个牛人分析一下使用apache/nginx的一些模块让php实现问下下载更加的高效:

http://www.laruence.com/2012/05/02/2613.html