Skip to content

Instantly share code, notes, and snippets.

@cute-angelia
Forked from HugoWen/ExportCsv.php
Created October 20, 2017 05:57
Show Gist options
  • Save cute-angelia/6656b3df621b9dad3c6d4229f7b913d8 to your computer and use it in GitHub Desktop.
Save cute-angelia/6656b3df621b9dad3c6d4229f7b913d8 to your computer and use it in GitHub Desktop.
php export csv file
function exportCSV($filename, $data)
{
header('Content-Encoding: UTF-8');
header('Content-type: text/csv; charset=UTF-8');
header("Content-Disposition:attachment;filename=".$filename);
header('Cache-Control:must-revalidate,post-check=0,pre-check=0');
header('Expires:0');
header('Pragma:public');
echo "\xEF\xBB\xBF"; // UTF-8 BOM
echo $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment