将文件发送给用户

时间:2011-04-26 00:52:46

标签: php

如何将文件发送给用户,以便他们可以选择目录和文件名。下面的代码让用户下载文件但不允许在Firefox中进行目录选择。我该如何解决?

// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');

3 个答案:

答案 0 :(得分:0)

Edit | Preferences | Applications | PDF Document | Always Ask

答案 1 :(得分:0)

这是浏览器中的设置。您无法通过PHP代码强制执行此操作。要更改设置,请转到:

Edit > Preferences > Main > Downloads并检查Always ask me where to save files

答案 2 :(得分:0)

你试过这个吗?

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