header() 函數(shù)向客戶端發(fā)送原始的 HTTP 報(bào)頭。進(jìn)入指定頁面后就彈出文件下載對(duì)話框,如圖

代碼如下:
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,
新聞熱點(diǎn)
疑難解答
網(wǎng)友關(guān)注