通过 PHP 下载 PDF 无效

Download PDF via PHP not working

我在这里找到了这段代码片段:How to make PDF file downloadable in HTML link?

我尝试更改它,因为我的 PDF 文件位于 "resources" 目录中。

我以为我做对了,但它不起作用。

谁能解释一下我做错了什么?

<?php
if (isset($_GET["file"]) && !empty($_GET["file"])) {
$file = $_GET["file"];
$path = "/resources/";
$getFile = $path.$file;
if (file_exists($getFile)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header("Content-Type: application/force-download");
header('Content-Disposition: attachment; filename=' . urlencode(basename($getFile)));
// 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($getFile));
ob_clean();
flush();
readfile($getFile);
exit;
}
}
?>

我添加了 isset 部分,因为如果没有它,如果没有变量集就会抛出错误。

这很好用,但是当我添加 $path = "/resources/";和 $getFile = $path.$file;它什么都不做(也没有错误)。

编辑:什么不起作用?文件未下载。

在以下环境中测试:Internet Explorer 和 Google Chrome。

编辑 2:我页面上的链接如下所示:

<a href="?file=kansasHandbook.pdf">Download PDF File</a>

将我自己的问题的答案发布给任何查看者:

我发现这段代码片段有效,而我的却不行。

<?php
if(isset($_GET['file']))
{
$var_1 = $_GET['file'];
//    $file = $var_1;

$dir = "resources/"; // trailing slash is important
$file = $dir . $var_1;

if (file_exists($file))
{
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
} //- the missing closing brace
?>

虽然这确实有效,但我仍然很好奇我在代码中做错了什么,以便我可以从中吸取教训。 :)

此片段来自:How to download a file from specific directory using php header

从绝对路径更改路径

$path = "/resources/";

相对路径:

$path = "./resources/";

或输入完整的绝对路径,可能类似于:

$path = "/var/www/htdocs/design/resources/";