我在此处找到了这段代码:How to make PDF file downloadable in HTML link?
我尝试更改它,因为我的PDF文件位于“资源”目录中。
我以为我说得对,但是没有用。
有人可以解释我做错了吗?
<?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>
答案 0 :(得分:0)
对任何观看者发布我自己问题的答案:
我发现这段代码片段有效但我的代码片段没有。
<?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
答案 1 :(得分:0)
从绝对路径更改路径
$path = "/resources/";
到相对路径:
$path = "./resources/";
或输入完整的绝对路径,可能类似于:
$path = "/var/www/htdocs/design/resources/";