php下载文件源代码(强制任意文件格式下载)

有时候我们需要用php下载一些文件,一般就是为了隐藏文件的真实下载地址才需要这样,否则这样会增加服务器负担,不如直接提供软件的地址

一个简单的php文件下载源代码,虽不支持断点续传等,但是可以满足一些常用的需求了。php下载文件其实用一个a标签就能实现,比如 <a href="web/magento-1.8.1.0.zip">magento-1.8.1.0.zip</a> 。但是遇到一些浏览器能识别的格式,比如.txt,.html,.pdf等,再用<a href="web/abc.txt">abc.txt</a> 想必也知道会发生什么了,代码如下:

  1. <?php
  2. /**
  3. * 文件下载
  4. *
  5. **/
  6. header("Content-type:text/html;charset=utf-8");
  7. download('web/magento-1.8.1.0.zip', 'magento下载');
  8. function download($file, $down_name){
  9. $suffix = substr($file,strrpos($file,'.')); //获取文件后缀
  10. $down_name = $down_name.$suffix; //新文件名,就是下载后的名字
  11. //判断给定的文件存在与否
  12. if(!file_exists($file)){
  13. die("您要下载的文件已不存在,可能是被删除");
  14. }
  15. $fp = fopen($file,"r");
  16. $file_size = filesize($file);
  17. //下载文件需要用到的头
  18. header("Content-type: application/octet-stream");
  19. header("Accept-Ranges: bytes");
  20. header("Accept-Length:".$file_size);
  21. header("Content-Disposition: attachment; filename=".$down_name);
  22. $buffer = 1024;
  23. $file_count = 0;
  24. //向浏览器返回数据
  25. while(!feof($fp) && $file_count < $file_size){
  26. $file_con = fread($fp,$buffer);
  27. $file_count += $buffer;
  28. echo $file_con;
  29. }
  30. fclose($fp);
  31. }
  32. ?>

PHP强制性文件下载的源代码,为用户提供强制性的文件下载功能。

代码如下:

  1. /********************
  2. *@file - path to file
  3. */
  4. function force_download($file)
  5. {
  6. if ((isset($file))&&(file_exists($file))) {
  7. header("Content-length: ".filesize($file));
  8. header('Content-Type: application/octet-stream');
  9. header('Content-Disposition: attachment; filename="' . $file . '"');
  10. readfile("$file");
  11. } else {
  12. echo "No file selected";
  13. }
  14. }

你一定会笑我"下载文件"如此简单都值得说?当然并不是想象那么简单。例如你希望客户要填完一份表格,才可以下载某一文件,你第一个想法一定是用 "Redirect"的方法,先检查表格是否已经填写完毕和完整,然后就将网址指到该文件,这样客户才能下载,但如果你想做一个关于"网上购物"的电子商务网站,考虑安全问题,你不想用户直接复制网址下载该文件,笔者建议你使用PHP直接读取该实际文件然后下载的方法去做,程序如下:

  1. $file_name = "info_check.exe";
  2. $file_dir = "/public/www/download/";
  3. if (!file_exists($file_dir . $file_name)) { //检查文件是否存在
  4. echo "文件找不到";
  5. exit;
  6. } else {
  7. $file = fopen($file_dir . $file_name,"r"); // 打开文件
  8. // 输入文件标签
  9. Header("Content-type: application/octet-stream");
  10. Header("Accept-Ranges: bytes");
  11. Header("Accept-Length: ".filesize($file_dir . $file_name));
  12. Header("Content-Disposition: attachment; filename=" . $file_name);
  13. // 输出文件内容
  14. echo fread($file,filesize($file_dir . $file_name));
  15. fclose($file);
  16. exit;
  17. }

而如果文件路径是"http" 或者 "ftp" 网址的话,则源代码会有少许改变,程序如下:

  1. $file_name = "info_check.exe";
  2. $file_dir = "https://www.phpfensi.com/";
  3. $file = @ fopen($file_dir . $file_name,"r");
  4. if (!$file) {
  5. echo "文件找不到";
  6. } else {
  7. Header("Content-type: application/octet-stream");
  8. Header("Content-Disposition: attachment; filename=" . $file_name);
  9. while (!feof ($file)) {
  10. echo fread($file,50000);
  11. }
  12. fclose ($file);
  13. }

这样就可以用PHP直接输出文件了。

但,一定要注意:Header信息相当于先将文件信息高速浏览器,然后,再把浏览器上的信息下载到附件中。所以,如果在MVC模式的应用程序中,view页一定不要有任何内容,否则,view页的相关内容会随着文件的内容一同被下载,导致下载后的文件不能使用。

下面是我的程序:

  1. public function downloadAction()
  2. {
  3. if (isset($_GET['mriID']))
  4. {
  5. $this->view->mrimriID']:addslashes($_GET['mriID']);
  6. }
  7. if (isset($_GET['dicomID']))
  8. {
  9. $this->view->dicomdicomID']:addslashes($_GET['dicomID']);
  10. }
  11. if (isset($_GET['JPGID']))
  12. {
  13. $this->view->JPGJPGID']:addslashes($_GET['JPGID']);
  14. }
  15. $dicomfile=new dicomfile();
  16. $jpgfile=new jpgfile();
  17. $mri=new mri();
  18. if($this->view->dicomID)
  19. {
  20. $filename=$dicomfile->find($this->view->dicomID)->toArray();
  21. $filename=$filename[0]['filename'];
  22. }
  23. else if($this->view->JPGID)
  24. {
  25. $filename=$jpgfile->find($this->view->JPGID)->toArray();
  26. $filename=$filename[0]['JPGname'];
  27. }
  28. $dir=$mri->find($this->view->mriID)->toArray();
  29. $dir=$dir[0]['dicom_path'];
  30. $file=$dir.'/'.$filename;
  31. if (!file_exists($file))
  32. {
  33. echo "the file does not exist!";
  34. exit();
  35. }
  36. $file_size=filesize($file);
  37. header("Content-type: application/octet-stream");
  38. header("Accept-Ranges: bytes");
  39. header("Accept-Length:". $file_size);
  40. header("Content-Disposition: attachment; filename=".$filename);
  41. $fp=fopen($file,"r");
  42. if (!$fp)
  43. echo "can't open file!";
  44. $buffer_size=1024;
  45. $cur_pos=0;
  46. while (!feof($fp)&&$file_size-$cur_pos>$buffer_size)
  47. {
  48. $buffer=fread($fp,$buffer_size);
  49. echo $buffer;
  50. $cur_pos+=$buffer_size;
  51. }
  52. $buffer=fread($fp,$file_size-$cur_pos);
  53. echo $buffer;
  54. fclose($fp);
  55. }

此时,download.phtml页面一定要是完全空白的。千万不要有任何内容(包括如下的固定信息:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>无标题文档</title>)

否则,这些信息都将被下载到下载文件中,导致文件不能使用。