Skip to content

Instantly share code, notes, and snippets.

@rahilwazir
Created May 27, 2014 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahilwazir/f3a2c668c2c2e6c31e7d to your computer and use it in GitHub Desktop.
Save rahilwazir/f3a2c668c2c2e6c31e7d to your computer and use it in GitHub Desktop.
Convert array to csv
function download_send_headers($filename) {
// disable caching
$now = gmdate("D, d M Y H:i:s");
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
header("Last-Modified: {$now} GMT");
// force download
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
// disposition / encoding on response body
header("Content-Disposition: attachment;filename={$filename}");
header("Content-Transfer-Encoding: binary");
}
function array2csv(array &$array)
{
if (count($array) == 0) {
return null;
}
ob_start();
$df = fopen("php://output", 'w');
// fputcsv($df, array_keys(reset($array)));
foreach ($array as $row) {
fputcsv($df, $row);
}
fclose($df);
return ob_get_clean();
}
// optional
$data = unserialize(stripslashes($_POST['data']));
download_send_headers($_POST['file_name']."_" . date("Y-m-d") . ".csv");
echo array2csv($data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment