用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> 想必也知道會發生什麼了。
<?php /** * 文件下載 * **/ header("Content-type:text/html;charset=utf-8"); download('web/magento-1.8.1.0.zip', 'magento下載'); function download($file, $down_name){ $suffix = substr($file,strrpos($file,'.')); //獲取文件後綴 $down_name = $down_name.$suffix; //新文件名,就是下載後的名字 //判斷給定的文件存在與否 if(!file_exists($file)){ die("您要下載的文件已不存在,可能是被刪除"); } $fp = fopen($file,"r"); $file_size = filesize($file); //下載文件需要用到的頭 header("Content-type: application/octet-stream"); header("Accept-Ranges: bytes"); header("Accept-Length:".$file_size); header("Content-Disposition: attachment; filename=".$down_name); $buffer = 1024; $file_count = 0; //向浏覽器返回數據 while(!feof($fp) && $file_count < $file_size){ $file_con = fread($fp,$buffer); $file_count += $buffer; echo $file_con; } www.jbxue.com fclose($fp); } ?>
PHP強制性文件下載的源代碼
為用戶提供強制性的文件下載功能。
/******************** *@file - path to file */ function force_download($file) { if ((isset($file))&&(file_exists($file))) { header("Content-length: ".filesize($file)); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . $file . '"'); readfile("$file"); } else { echo "No file selected"; } }
你一定會笑我"下載文件"如此簡單都值得說?當然並不是想象那麼簡單。例如你希望客戶要填完一份表格,才可以下載某一文件,你第一個想法一定是用 "Redirect"的方法,先檢查表格是否已經填寫完畢和完整,然後就將網址指到該文件,這樣客戶才能下載,但如果你想做一個關於"網上購物"的電子商務網站,考慮安全問題,你不想用戶直接復制網址下載該文件,筆者建議你使用PHP直接讀取該實際文件然後下載的方法去做。程序如下:
$file_name = "info_check.exe"; $file_dir = "/public/www/download/"; if (!file_exists($file_dir . $file_name)) { //檢查文件是否存在 echo "文件找不到"; exit; } else { $file = fopen($file_dir . $file_name,"r"); // 打開文件 // 輸入文件標簽 www.jbxue.com Header("Content-type: application/octet-stream"); Header("Accept-Ranges: bytes"); Header("Accept-Length: ".filesize($file_dir . $file_name)); Header("Content-Disposition: attachment; filename=" . $file_name); // 輸出文件內容 echo fread($file,filesize($file_dir . $file_name)); fclose($file); exit; }
而如果文件路徑是"http" 或者 "ftp" 網址的話,則源代碼會有少許改變,程序如下:
$file_name = "info_check.exe"; $file_dir = "http://www.jbxue.com/"; $file = @ fopen($file_dir . $file_name,"r"); if (!$file) { echo "文件找不到"; } else { Header("Content-type: application/octet-stream"); Header("Content-Disposition: attachment; filename=" . $file_name); while (!feof ($file)) { echo fread($file,50000); } fclose ($file); }
這樣就可以用PHP直接輸出文件了。
但,一定要注意:Header信息相當於先將文件信息高速浏覽器,然後,再把浏覽器上的信息下載到附件中。所以,如果在MVC模式的應用程序中,view頁一定不要有任何內容,否則,view頁的相關內容會隨著文件的內容一同被下載,導致下載後的文件不能使用。
下面是我的程序:
public function downloadAction() { if (isset($_GET['mriID'])) { $this->view->mriID=(get_magic_quotes_gpc())?$_GET['mriID']:addslashes($_GET['mriID']); } if (isset($_GET['dicomID'])) { $this->view->dicomID=(get_magic_quotes_gpc())?$_GET['dicomID']:addslashes($_GET['dicomID']); } if (isset($_GET['JPGID'])) { $this->view->JPGID=(get_magic_quotes_gpc())?$_GET['JPGID']:addslashes($_GET['JPGID']); } www.jbxue.com $dicomfile=new dicomfile(); $jpgfile=new jpgfile(); $mri=new mri(); if($this->view->dicomID) { $filename=$dicomfile->find($this->view->dicomID)->toArray(); $filename=$filename[0]['filename']; } else if($this->view->JPGID) { $filename=$jpgfile->find($this->view->JPGID)->toArray(); $filename=$filename[0]['JPGname']; } $dir=$mri->find($this->view->mriID)->toArray(); $dir=$dir[0]['dicom_path']; $file=$dir.'/'.$filename; if (!file_exists($file)) { echo "the file does not exist!"; exit(); } $file_size=filesize($file); header("Content-type: application/octet-stream"); header("Accept-Ranges: bytes"); header("Accept-Length:". $file_size); header("Content-Disposition: attachment; filename=".$filename); $fp=fopen($file,"r"); if (!$fp) echo "can't open file!"; $buffer_size=1024; $cur_pos=0; while (!feof($fp)&&$file_size-$cur_pos>$buffer_size) { $buffer=fread($fp,$buffer_size); echo $buffer; $cur_pos+=$buffer_size; } $buffer=fread($fp,$file_size-$cur_pos); echo $buffer; fclose($fp); }
此時,download.phtml頁面一定要是完全空白的。千萬不要有任何內容(包括如下的固定信息:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標題文檔</title>)否則,這些信息都將被下載到下載文件中,導致文件不能使用。