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

php通过修改header强制图片下载的方法

程序员文章站 2022-07-26 12:34:03
本文实例讲述了php通过修改header强制图片下载的方法。分享给大家供大家参考。具体实现方法如下: function downloadfile($file){...

本文实例讲述了php通过修改header强制图片下载的方法。分享给大家供大家参考。具体实现方法如下:

function downloadfile($file){
 $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程序设计有所帮助。