<?php
$file = $_GET['name'];
$path = './curr/'.$file.'.pdf'; // the file made available for download via this PHP file
$mm_type="application/pdf"; // modify accordingly to the file type of $path, but in most cases no need to do so
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: " . $mm_type);
header("Content-Length: " .(string)(filesize($path)) );
header('Content-Disposition: attachment; filename="'.basename($path).'"');
header("Content-Transfer-Encoding: binary\n");
readfile($path); // outputs the content of the file
?>
这是file.php中的一段代码。我指的是使用的文件:
<a href="file.php?name=First File">File 1</a>
目的是点击链接,./curr/First File.pdf
应该下载。我确实得到了一个下载,但在检查时,它是嵌入在文件中的pdf的网页。有人可以帮忙吗?
答案 0 :(得分:1)
如果您只想加载PDF,上面的代码就是要执行的所有代码。
删除所有周围的菜单,页眉或页脚。在调用此链接时,请确保除了readfile()
中的PDF之外没有HTML或任何其他输出。
答案 1 :(得分:0)
尝试将内容类型更改为:
header("Content-Type: application/force-download");