CSV MIME类型的问题不通过浏览器下载

时间:2011-05-18 13:20:39

标签: php mysql file http-headers export-to-csv

所以,首先让我说一下,在你开始提供关于如何简单地将完整的表格导出到CSV文件的其他建议之前,这不是我想要做的(我的演示代码现在建议,但我只是通过浏览器shabaz测试整个下载。

我实际上想构建要从多个表导出的内容。从来没有,我只是想通过浏览器立即进行导出和下载。

我从在线示例中获取此代码,目前正在发生的事情是将数据打印到我的浏览器中。

这是我正在测试的代码:

$result = mysql_query("SELECT * FROM results_tb") or die(mysql_error());

    // I hard-code the column names so I can capitalize, add spaces, etc.
    $fields = '"User ID","Test_id","score %","Time taken"'."\n";

    // Iterate through the rows of data
    while ($row = mysql_fetch_assoc($result))
    {
        //echo $row['user_id'];
        $fields .= '"'.$row['user_id'].'","'.$row['test_id'].'","'.$row['score'].'","'.$row['time_elapsed'].'"'."\n";
    }

    // Set our headers
    header('Content-type: text/csv');
    // To display data in-browser, change the header below to:
    // header("Content-Disposition: inline");
    header("Content-Disposition: attachment; filename=event_registrations.csv");

    // Output our data
    echo $fields;

我假设这个例子是裤子,所以有人可以向我解释如何做到这一点吗?

非常感谢:D

我的标题响应被firebug-Lite抓住了:

Date    Wed, 18 May 2011 14:15:18 GMT
X-Powered-By    PHP/5.1.6
Content-disposition attachment;filename=MyVerySpecial.csv
Connection  close
Content-Length  992
Server  Apache/2.2.3 (Red Hat)
Content-Type    text/csv

1 个答案:

答案 0 :(得分:0)

我的猜测是,您display_errors设置为关闭,并且您在进行header()次呼叫之前输出了一些内容。这会导致你看到的行为。

首先,修改您的php.ini文件并确保display_errors已启用,并且您的PHP脚本中有错误报告(例如error_reporting(E_ALL);)。现在您可能会在屏幕上出现错误。有点像:

Cannot send header information. Output already started by XXX.php (line YYY).

可能发生的是您在发送header()命令之前意外发送空格或换行符,并且您正在抑制错误。当您在header()次调用之前向浏览器发送内容时,将忽略它们。因此,浏览器只显示您发送的内容,而不是让用户下载它。

如果您使用的是Firefox,您还可以使用Firebug扩展程序检查下载的HTTP响应标头。