0

我有以下代码试图让它下载服务器上的特定文件:

$file = 'upload/Order.txt';
header("Pragma: public", true);
header("Expires: 0"); // set expiration time
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment; filename="basename.$file);
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($file));

所发生的只是它导致浏览器下载一个文件,在我的例子中是“Order.txt”,但它是空白的,它只是在无处创建这个文件。它对 $file 的“upload/”路径部分没有任何作用。

感谢您的帮助,我发现标题真的很混乱,为什么我不能只拥有“下载($file)”是我无法理解的。

编辑:我会为一个问题苦苦挣扎好几天,最后决定在这里问,然后在我自己解决之后立即提出。

我将文件的位置更改为与 PHP 脚本相同,但是我仍然想知道如何使它与它们分开工作。我还补充说:

readfile($file);

如果我更改这 2 个更改,它就不起作用。

也很苗条,新代码:

$file = 'Order.txt';
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=$file");
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: binary");
readfile($file);
4

2 回答 2

0

尝试更改此行:

header("Content-Disposition: attachment; filename='".basename($file)."';");
于 2013-11-03T21:35:36.613 回答
0

您应该在标头之后将文件内容打印到标准输出:

$file = 'upload/Order.txt';
header("Pragma: public", true);
header("Expires: 0"); // set expiration time
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment; filename=".basename($file));
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($file));
$handle = fopen($file, "r");        
$contents = fread($handle, filesize($file));
fclose($handle);
echo $contents;
于 2013-11-03T21:35:36.937 回答