如何使用php标题从特定目录下载文件

时间:2014-03-08 05:24:48

标签: php header

我有一些代码使用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>";
}
?>

显示错误 内容错误

该文件不存在!

我正在使用

  

http://sap.layyah.info/download.php?link=UAC.dll

此链接下载文件原始位置是

  

http://sap.layyah.info/upload/UAC.dll

1 个答案:

答案 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>