我有一些代码使用php标题下载文件,但它没有正常工作,想要添加目录来阅读
<?php
if(isset($_GET['link'])){
$var_1 = $_GET['link'];
$dir='/upload/';
}
?>
<?php
if(isset($_GET['link'])){
$var_1 = $_GET['link'];
$file = $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;
}
echo "<h1>Content error</h1><p>The file does not exist!</p>";
}
?>
显示错误 内容错误
该文件不存在!
我正在使用
此链接下载文件原始位置是
答案 0 :(得分:9)
首先,$file = '$var_1';
中的引号无法正确解释,
因此需要将其读作$file = $var_1;
你也有一个缺失的右括号}
<?php
if(isset($_GET['link']))
{
$var_1 = $_GET['link'];
$file = $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
?>
你提到你想使用不同的文件夹。
您可以使用以下内容:
$dir = "folder/"; // trailing slash is important
$file = $dir . $var_1;
或
$dir = "../folder/"; // trailing slash is important
$file = $dir . $var_1;
取决于文件夹的位置。
以下内容经过测试并为我工作,文件从我的服务器的根目录运行。
<?php
if(isset($_GET['link']))
{
$var_1 = $_GET['link'];
// $file = $var_1;
$dir = "folder/"; // 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
?>
HTML (我以PDF文件为例)
<a href="download.php?link=document.pdf">Download here</a>