php教程

超轻量级php框架startmvc

php下载文件,添加响应头的简单实例

更新时间:2020-03-11 18:58:47 作者:startmvc
如下所示://下载,添加响应头信息header('Content-type:application/octet-stream');header('Content-Disposition

如下所示:


//下载,添加响应头信息
header('Content-type:application/octet-stream');
header('Content-Disposition:attachment;filename="'.basename($file).'"');
header('Content-Length:'.filesize($file));
readfile($file);

以上就是小编为大家带来的php下载文件,添加响应头的简单实例的全部内容了,希望对大家有所帮助,多多支持脚本之家~

php下载文件