4
<?php

$filename="backup_".date('m/d/Y', time()).".csv";

header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment;filename="'.$filename.'"');
header('Cache-Control: max-age=0');

$q=mysqli_query($conn,"SELECT * FROM visitordb");
$file = fopen('php://output','w');
if(mysqli_num_rows($q)>0) {
    while($res = $q->fetch_assoc()) {
        $datas = $res["sno"].','.$res["UDID"].','.$res["taggnumber"].','.$res["name"].','.$res["designation"].','.$res["company"].','.$res["email"];
        fputcsv($file, explode(',', $datas));
    }
} else {

}

fclose($file);
}

在 ms excel 中查看时,上述代码在 .csv 文件的开头生成空行。.csv 文件还会在页面中生成任何 html 代码。

4

1 回答 1

6

如果删除标头指令会发生什么?您必须知道,根据定义,标题由新行结束。我可以想象这是一个 \n vs \r\n 冲突。

如果一切都失败了,将整个输出放入缓冲区并稍后修剪:

ob_start();
...your code...
$out = ob_get_contents();
ob_end_clean();
echo trim($out);

此致

佐尔特

于 2013-05-17T16:21:21.983 回答