php header 设置文件下载

Posted 又见霸王色

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php header 设置文件下载相关的知识,希望对你有一定的参考价值。

控制器 php 代码:
$filepath = "http://www.jiesen365.com/uploadfile/20150519044903-897.pdf";   //下载文件地址

$arr = explode( ‘/‘ , $filepath);
$filename= $arr[count($arr)-1]; //设置下载文件名称,注意后缀名

if($filepath){
header("Content-type: text/plain");
header("Accept-Ranges: bytes");
header("Content-Disposition: attachment; filename=".$filename);
header("Cache-Control: must-revalidate, post-check=0, pre-check=0" );
header("Pragma: no-cache" );
header("Expires: 0" );
readfile($filepath);
exit(0);
}

前台html代码:

<a href="javascript:;" onclick="download()">点击下载</a>

function download(){

  window.location.href="连接--访问控制器(自动下载)"
}




以上是关于php header 设置文件下载的主要内容,如果未能解决你的问题,请参考以下文章

php设置文件类型content-type

通过 .htaccess 文件为所有 PHP 脚本设置 HTTP 标头

php curl 模拟get请求 并设置header

文件下载设置

PHP中header头设置Cookie与内置setCookie的区别

php提供图片下载的方法