该片段读取新文件 CSV 中的输出流。那部分有效。我可以从服务器打开文件,它看起来很完美。问题在于通过浏览器下载到我的硬盘驱动器的文件。它无法在 Windows 机器上的电子表格软件或 Excel 中正确打开和读取:
$NewFile = fopen($FileName,"w");
fwrite($NewFile, $output);
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.$FileName.'"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($NewFile));
ob_clean();
flush();
readfile($NewFile);
CSV 的内容看起来就像我从浏览器下载打开它时一样,但当我直接在服务器上打开它或使用 FTP 下载存储的文件时看起来很完美。