0

我正在使用 php 下载 PDF/DOC 文件

这是我的 html 代码:

<a title="Download" target="_new" href="includes/pdf_server.php?file=test.pdf">Test PDF</a>

这是我在 pdf_server.php 文件中的 php 代码

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

PDF是我的test.pdf文件所在的文件夹。当我单击链接下载文件时。浏览器显示要下载的文件及其大小(1.4 mb),但是当下载完成并打开文件时,它显示文件损坏或文件不受支持的错误。然后我检查它的属性,它显示 0 个字节。

请帮忙

4

1 回答 1

4

试试这个-

<?php
$file_name = $_GET["file"];
if (file_exists("../PDF/".$file_name)) {
    header('Pragma: public');   // required
    header('Expires: 0');       // no cache
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Last-Modified: '.gmdate ('D, d M Y H:i:s', filemtime ("../PDF/".$file_name)).' GMT');
    header('Cache-Control: private',false);
    header('Content-Type: '.'application/pdf');
    header('Content-Disposition: attachment; filename="'.basename("../PDF/".$file_name).'"');
    header('Content-Transfer-Encoding: binary');
    header('Content-Length: '.filesize($file_name));    // provide file size
    header('Connection: close');
    readfile("../PDF/".$file_name);     // push it out
    exit();
}
?>
于 2013-03-28T06:10:04.183 回答