欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP强制性文件下载

程序员文章站 2022-05-18 19:53:40
...

如果你需要下载特定的文件而不用另开新窗口,下面的代码片段可以帮助你。

  1. function force_download($file)
  2. {
  3. $dir = "../log/exports/";
  4. if ((isset($file))&&(file_exists($dir.$file))) {
  5. header("Content-type: application/force-download");
  6. header('Content-Disposition: inline; filename="' . $dir.$file . '"');
  7. header("Content-Transfer-Encoding: Binary");
  8. header("Content-length: ".filesize($dir.$file));
  9. header('Content-Type: application/octet-stream');
  10. header('Content-Disposition: attachment; filename="' . $file . '"');
  11. readfile("$dir$file");
  12. } else {
  13. echo "No file selected";
  14. }
  15. }
复制代码

用法:

  1. force_download("image.jpg");
  2. ?>
复制代码

PHP