欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php强制下载类型的实现代码

程序员文章站 2023-11-14 22:17:22
复制代码 代码如下: function downloadfile($file){ /*coded by alessio delmonti*/     &...
复制代码 代码如下:

function downloadfile($file){
/*coded by alessio delmonti*/        
        $file_name = $file;
        $mime = 'application/force-download';
        header('pragma: public');       // required
        header('expires: 0');           // no cache
        header('cache-control: must-revalidate, post-check=0, pre-check=0');
        header('cache-control: private',false);
        header('content-type: '.$mime);
        header('content-disposition: attachment; filename="'.basename($file_name).'"');
        header('content-transfer-encoding: binary');
        header('connection: close');
        readfile($file_name);           // push it out
        exit();
}

php将文件下载下来而不是超链接下载,这样可以减少盗链的情况!将文件给浏览器让浏览器下载

以txt类型为例

由于现在的浏览器已经可以识别txt文档格式,如果只给txt文档做一个文字链接的话,点击后只是打开一个新窗口显示txt文件的内容,并不能实现点击下载的目的。当然这个问题的解决办法也可以是将txt文件改名为浏览器不认识的文件(比如rar),这样的话,由于浏览器不能识别rar类型的文件,只能让用户下载了。还有一种办法,就是利用代码通过header设置文档的格式来实现点击下载的目的。
php代码如下:
复制代码 代码如下:

$filename = '/path/'.$_get['file'].'.txt'; //文件路径
header("content-type: application/force-download");
header("content-disposition: attachment; filename=".basename($filename));
readfile($filename);

简要说明:
第一个header函数设置content-type的值为application/force-download;
第二个header函数设置要下载的文件。注意这里的filename是不包含路径的文件名,filename的值将来就是点击下载后弹出对话框里面的文件名,如果带路径的话,弹出对话框的文件名就是未知的;
最后通过readfile函数,将文件流输出到浏览器,这样就实现了txt文件的下载。