PHP-如何解决Html页面源附加到下载文件

时间:2016-05-11 09:59:24

标签: php download

我在上传后从Ftp文件夹下载文件。

问题是,当我打开txt文件时,它显示附加文件内容的html页面源

如果我预览图像文件(jpg或jpeg),则显示图像已损坏

如果我打开pdf错误:无法加载Pdf文档

请告诉我错误的地方。

这是我的代码:

if (isset($_GET['id']) && basename($_GET['id']) == $_GET['id']) {
    $filename = $_GET['id'];
} else {
    $filename =NULL ;
}

$err = 'Sorry, the file you are requesting is unavailable.';
if (!$filename) {
    // if variable $filename is NULL or false display the message
    echo $err;
} else {
    // define the path to your download folder plus assign the file name
    $path = '/home/devestctrl/public_html/wp-content/uploads/'.$filename;
    // check that file exists and is readable
    if (file_exists($path) && is_readable($path)) {
        // get the file size and send the http headers
        $size = filesize($path);
        header('Content-Type: application/octet-stream');
        header('Content-Type: '.$mime);
        header('Content-Length: '.$size);
        header('Content-Disposition: attachment; filename='.$filename);
        header('Content-Transfer-Encoding: binary');
        // open the file in binary read-only mode
        // display the error messages if the file can´t be opened
        $file = @ fopen($path, 'rb');
        if ($file) {
            // stream the file and exit the script when complete
            fpassthru($file);
            exit();
        } else {
            echo $err;
        }
    } else {
        echo $err;
    }
}

我使用$filename的回音检查;

它显示文件中的输出,而不是在页面中打印。

错误显示:

  

抱歉,您请求的文件不可用。

错误之后我也可以下载,但回显文件中显示的$filename

插入表格:

 echo "<tr><a href='?id=" . $row["FileupName"]. "'>".$row["FileupName"]."</td></tr>";

1 个答案:

答案 0 :(得分:0)

您无法同时将数据输出到页面下载文件。您的浏览器发出的一条请求会让您做出一个回复。此响应通常作为页面显示在浏览器中,除非您设置下载标题,然后浏览器会要求您将响应下载到文件中。

因此,您需要做的是有两个请求和响应:首先,您输出您的页面和用户需要单击的链接(或JavaScript或刷新元标记以自动执行)在第二个请求中下载文件。