您好,登錄后才能下訂單哦!
1. 設(shè)置超鏈接的href屬性
<ahref="文件地址"></a>
如果瀏覽器不能解析該文件,瀏覽器會自動下載。而如果文件是圖片或者txt,會直接在瀏覽器中打開。
2. 輸出文件流
//download.php
//頁面加載的時候就調(diào)用
downloadFile("3.rar","something.rar");
//$filePath是服務(wù)器的文件地址
//$saveAsFileName是用戶指定的下載后的文件名
function downloadFile($filePath,$saveAsFileName){
// 清空緩沖區(qū)并關(guān)閉輸出緩沖
ob_end_clean();
//r: 以只讀方式打開,b: 強制使用二進制模式
$fileHandle=fopen($filePath,"rb");
if($fileHandle===false){
echo "Can not find file: $filePath\n";
exit;
}
Header("Content-type: application/octet-stream");
Header("Content-Transfer-Encoding: binary");
Header("Accept-Ranges: bytes");
Header("Content-Length: ".filesize($filePath));
Header("Content-Disposition: p_w_upload; filename=\"$saveAsFileName\"");
while(!feof($fileHandle)) {
//從文件指針 handle 讀取最多 length 個字節(jié)
echo fread($fileHandle, 32768);
}
fclose($fileHandle);
}
注:
?。?)download.php可以設(shè)置為<a>標簽的href屬性,點擊<a>標簽,則瀏覽器會提示下載。
?。?)jQuery模擬觸發(fā)<a>的click事件時有bug,應(yīng)該使用html對象的click方法。$('#hyperLink')[0].click();
?。?)jQuery Mobile會改變<a>的行為。所以,在使用jQuery Mobile時,無論手動點擊還是java模擬點擊,都會跳轉(zhuǎn)到download.php頁面,并不會觸發(fā)下載。(4)location.href或location.replace定向到download.php也可以實現(xiàn)下載。這種方法不受jQuery Mobile的影響。
?。?)以上兩種方法進行下載時,chrome會提示“Resource interpreted as Document but transferred with MIME type application/octet-stream”。為<a>增加html5屬性download可以解決這個問題。<a href="..." download></a>而location.href或location.replace觸發(fā)的下載,暫無辦法解決。
程序員杭州軟件測試杭州APP開發(fā)杭州PHP工程師
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。