下载文件头

Posted

tags:

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

Set headers for file download
  1. function download_headers($filename)
  2. {
  3. // disable caching
  4. $now = gmdate("D, d M Y H:i:s");
  5. header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
  6. header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
  7. header("Last-Modified: {$now} GMT");
  8.  
  9. // force download
  10. header("Content-Type: application/force-download");
  11. header("Content-Type: application/octet-stream");
  12. header("Content-Type: application/download");
  13.  
  14. // disposition / encoding on response body
  15. header("Content-Disposition: attachment;filename={$filename}");
  16. header("Content-Transfer-Encoding: binary");
  17. }

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

Android 逆向Android 进程注入工具开发 ( Visual Studio 开发 Android NDK 应用 | Visual Studio 中 SDK 和 NDK 安装位置 )(代码片段

VSCode 创建.py自动添加文件头注释的设置

使用 libtorrent 下载特定片段

Vscode for python ide配置

C++头文件目录在那个文件夹?

c语言中graphics.h头文件添加了怎么不起作用???