请我是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>
答案 0 :(得分:0)
$file
目前仅保留文件名。在readfile($file)
中,$file
应该是服务器上存在的文件的完整路径,而不仅仅是名称。它应该位于那条路上。我认为,在您的情况下,问题是该文件不存在于服务器上。