首頁  >  文章  >  後端開發  >  PHP强制性文件下载

PHP强制性文件下载

WBOY
WBOY原創
2016-07-25 08:42:39890瀏覽

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

  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


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn