PHP 在 webroot 之外下载文件

发布于 2025-01-02 22:00:21 字数 880 浏览 0 评论 0原文

我在网络根目录之外保存了许多文档。

我想单击一个链接,打开一个新窗口(target =“_blank”),并强制下载找到的文件。

这是我到目前为止所得到的,但我的结果在浏览器弹出窗口中显示了 gobble-de-gook,而不是强制下载到桌面:

function download($filelocation){

  $filename = basename($filelocation); 
  if (file_exists($filelocation)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.$filename); 
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($filelocation));
    ob_clean();
    flush();
    readfile($filelocation);
    exit;
  }

}

在新的浏览器窗口中,我只需调用 download() 函数具有文件的特定路径。

它肯定找到了该文件,但现在我只是想知道 header() 强制文件通过浏览器时缺少什么。

I save many documents outside the webroot.

I want to click a link, that opens a new window (target="_blank"), and force download the file that's found.

Here's what I've got so far, but my results show gobble-de-gook in the browser popup, rather than forcing the download to the desktop:

function download($filelocation){

  $filename = basename($filelocation); 
  if (file_exists($filelocation)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.$filename); 
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($filelocation));
    ob_clean();
    flush();
    readfile($filelocation);
    exit;
  }

}

In the new browser window I simply call that download() function with a specific path the the file.

It's definitely finding the file, but now I'm just wondering what I'm missing with header() to force the file through the browser.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌酱 2025-01-09 22:00:21

缺少这个:

header("Content-Type: application/force-download"); 

Missing this:

header("Content-Type: application/force-download"); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文