php下載檔案 強制任意檔案格式下載

來源:互聯網
上載者:User

用php下載一些檔案,一般就是為了隱藏檔案的真實下載地址才需要這樣,否則這樣會增加伺服器負擔,不如直接提供軟體的地址。

一個簡單的php檔案下載原始碼,雖不支援斷點續傳等,但是可以滿足一些常用的需求了。php下載檔案其實用一個a標籤就能實現,比如 magento-1.8.1.0.zip 。但是遇到一些瀏覽器能識別的格式,比如.txt,.html,.pdf等,再用abc.txt 想必也知道會發生什麼了。

  1. /**
  2. * 檔案下載
  3. *
  4. **/
  5. header("Content-type:text/html;charset=utf-8");
  6. download('web/magento-1.8.1.0.zip', 'magento下載');
  7. function download($file, $down_name){
  8. $suffix = substr($file,strrpos($file,'.')); //擷取檔案尾碼
  9. $down_name = $down_name.$suffix; //新檔案名稱,就是下載後的名字
  10. //判斷給定的檔案存在與否
  11. if(!file_exists($file)){
  12. die("您要下載的檔案已不存在,可能是被刪除");
  13. }
  14. $fp = fopen($file,"r");
  15. $file_size = filesize($file);
  16. //下載檔案需要用到的頭
  17. header("Content-type: application/octet-stream");
  18. header("Accept-Ranges: bytes");
  19. header("Accept-Length:".$file_size);
  20. header("Content-Disposition: attachment; filename=".$down_name);
  21. $buffer = 1024;
  22. $file_count = 0;
  23. //向瀏覽器返回資料
  24. while(!feof($fp) && $file_count < $file_size){
  25. $file_con = fread($fp,$buffer);
  26. $file_count += $buffer;
  27. echo $file_con;
  28. } www.jbxue.com
  29. fclose($fp);
  30. }
  31. ?>
複製代碼

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. // 輸入檔案標籤 www.jbxue.com
  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 = "http://www.jbxue.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->mriID=(get_magic_quotes_gpc())?$_GET['mriID']:addslashes($_GET['mriID']);
  6. }
  7. if (isset($_GET['dicomID']))
  8. {
  9. $this->view->dicomID=(get_magic_quotes_gpc())?$_GET['dicomID']:addslashes($_GET['dicomID']);
  10. }
  11. if (isset($_GET['JPGID']))
  12. {
  13. $this->view->JPGID=(get_magic_quotes_gpc())?$_GET['JPGID']:addslashes($_GET['JPGID']);
  14. } www.jbxue.com
  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. 無標題文檔)否則,這些資訊都將被下載到下載檔案中,導致檔案不能使用。
複製代碼

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.