下载文件头
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下载文件头相关的知识,希望对你有一定的参考价值。
Set headers for file downloadfunction download_headers($filename)
{
// disable caching
$now = gmdate("D, d M Y H:i:s"); header("Expires: Tue, 03 Jul 2001 06:00:00 GMT"); header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate"); header("Last-Modified: {$now} GMT");
// force download
header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download");
// disposition / encoding on response body
header("Content-Disposition: attachment;filename={$filename}"); header("Content-Transfer-Encoding: binary"); }
以上是关于下载文件头的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Android 进程注入工具开发 ( Visual Studio 开发 Android NDK 应用 | Visual Studio 中 SDK 和 NDK 安装位置 )(代码片段
VSCode 创建.py自动添加文件头注释的设置
使用 libtorrent 下载特定片段
Vscode for python ide配置
C++头文件目录在那个文件夹?
c语言中graphics.h头文件添加了怎么不起作用???