Heim  >  Artikel  >  Backend-Entwicklung  >  PHP强制性文件下载

PHP强制性文件下载

WBOY
WBOYOriginal
2016-07-25 08:42:39888Durchsuche

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

  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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn