|
有時(shí)我們希望如圖片、文本文檔、網(wǎng)頁、mp3、pdf等內(nèi)容,當(dāng)點(diǎn)擊對應(yīng)鏈接時(shí)直接下載,而不是在網(wǎng)頁上顯示,那么就需要強(qiáng)制設(shè)置header頭信息。以下為一段不會(huì)產(chǎn)生亂碼的php函數(shù)實(shí)現(xiàn)代碼,其他程序語言也可參考之編寫實(shí)現(xiàn)。
復(fù)制代碼 代碼如下:
/**
* Downloader
*
* @param $archivo
* path al archivo
* @param $downloadfilename
* (null|string) el nombre que queres usar para el archivo que se va a descargar.
* (si no lo especificas usa el nombre actual del archivo)
*
* @return file stream
*/
function download_file($archivo, $downloadfilename = null) {
if (file_exists($archivo)) {
$downloadfilename = $downloadfilename !== null ? $downloadfilename : basename($archivo);
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $downloadfilename);
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($archivo));
ob_clean();
flush();
readfile($archivo);
exit;
}
}
php技術(shù):php強(qiáng)制文件下載而非在瀏覽器打開的自定義函數(shù)分享,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。