我可以使用此代码从php导出csv文件
header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=data.csv');
$output = fopen('php://output', 'w');
但此代码使用charset utf-8 without BOM
创建文件,但我需要charset utf-8
。
是解决这个问题的方法吗?
答案 0 :(得分:14)
我是这样做的。
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=file.csv'));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
echo "\xEF\xBB\xBF"; // UTF-8 BOM
echo $csv_file_content;
exit();
当然,您可以将echo $csv_file_content
替换为您需要的内容。