PHP内容处理文件名错误

时间:2016-01-07 06:12:30

标签: php filenames content-disposition

我有一个数据库,我希望用户将数据下载为csv文件。用户可以选择要下载的数据范围 - 即选择日期到当前日期。我希望将csv文件命名为'selected-date.csv'

我使用了以下代码:

$filename = $date . "csv";
header ('Content-Type:text/csv'); 
header ('Content-Dispostion: attachment; filename="'.$filename.'"');

下载文件但使用此代码所在的PHP文件名(get.php)。我也试过给出一个像“download.csv”这样的默认文件名,但这也不起作用。无论我做什么,文件都以php文件的名称下载。这适用于Chrome,Firefox和IE。我没有Safari试试。日期格式为YYYY-MM-DD。所以我认为没有任何无效字符可以引发任何错误。

我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

您必须为文件下载设置标题

downloadfile($filename) {
    $now = gmdate("D, d M Y H:i:s");
    header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
    header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
    header("Last-Modified: {$now} GMT");

    // force download  
    header("Content-Type: application/force-download");
    header("Content-Type: application/octet-stream");
    header("Content-Type: application/download");
    header("Content-Disposition: attachment;filename={$filename}");
    header("Content-Transfer-Encoding: binary");
}

//file name 
$filename = date("Y-m-d") . ".csv"; // make sure it is .csv ( i can not see . in your case )

//call function
downloadfile($filename);