我有这个脚本让用户下载文件:
header('Content-Encoding: UTF-8');
header("Content-Type: application/vnd.ms-excel; charset=UTF-8");
header("Content-Disposition: attachment; filename=qa_report.xlsx");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false);
// echo excel file ...
exit;
文件始终有BOM标记,如何删除BOM标记?
答案 0 :(得分:0)
我解决了这个问题。问题不是脚本文件编码,而是其他包含文件,它没有用UTF8编码而没有BOM。 所有包含文件必须使用相同的编码。