咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

PHP强制下载文件

2019-01-20 23:24:45 7716次

有时我们不想让浏览器直接打开文件,如PDF文件,而是要直接下载文件,那么以下函数可以强制下载文件,函数中使用了application/octet-stream头类型。


function download($filename){ 

    if ((isset($filename))&&(file_exists($filename))){ 

       header("Content-length: ".filesize($filename)); 

       header('Content-Type: application/octet-stream'); 

       header('Content-Disposition: attachment; filename="' . $filename . '"'); 

       readfile("$filename"); 

    } else { 

       echo "Looks like file does not exist!"; 

    } 

}


使用方法如下:

download('/down/test_45f73e852.zip');


首页
最新活动
个人中心