通过php中的浏览器下载docx / doc文件

时间:2016-03-15 06:54:30

标签: php download header http-headers docx

请我是php的新手,我无法弄清楚为什么这段代码不起作用。我尝试下载这个docx文件,然而,它下载文件但是当我打开文件时,文件上没有显示任何内容。它是空的。我相信该文件已损坏,这是由于代码。代码如下:

<?php
    if(isset($_POST['file_name']))
    {

        $file = $_POST['file_name'];
        echo $file;

        header('Content-Description: File Transfer');
        header('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document');
        header('Content-Disposition: attachment; filename='.$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($file));
        ob_clean();
        flush();
        readfile('resumeFolder/'.$file);
        exit(); 
    }
?>
<form action="force_download.php" method="post" name="downloadform">
  <input name="file_name" value=" Aunt_CC_Letter.docx" type="hidden">
  <input type="submit" value="Download the MP3">
</form>

1 个答案:

答案 0 :(得分:0)

$file目前仅保留文件名。在readfile($file)中,$file应该是服务器上存在的文件的完整路径,而不仅仅是名称。它应该位于那条路上。我认为,在您的情况下,问题是该文件不存在于服务器上。