强制文件下载

Posted

tags:

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

Provide files to the user by forcing them to download.
  1. /********************
  2. *@file - path to file
  3. */
  4. function force_download($file)
  5. {
  6. if ((isset($file))&&(file_exists($file))) {
  7. header("Content-length: ".filesize($file));
  8. header('Content-Type: application/octet-stream');
  9. header('Content-Disposition: attachment; filename="' . $file . '"');
  10. readfile("$file");
  11. } else {
  12. echo "No file selected";
  13. }
  14. }

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

HLS NGINX-RTMP [错误] 1281#0:* 58 hls:强制片段拆分:10.002 秒

如何从片段内的列表视图打开链接网址?

无法将整数强制转换为android.support.design.widget.FloatingActionButton

Asynctask结果显示重新创建片段后

一对多和递归关系 - 强制设置值

如何在片段着色器中平铺部分纹理