Created
June 6, 2013 23:34
-
-
Save seanbuscay/ee142bfc97b31c9ce982 to your computer and use it in GitHub Desktop.
write to csv file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
} | |
Then you can make your user download that file using something like: | |
function download_send_headers($filename) { | |
header("Pragma: public"); | |
header("Expires: 0"); | |
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); | |
header("Content-Type: application/force-download"); | |
header("Content-Type: application/octet-stream"); | |
header("Content-Type: application/download"); | |
header("Content-Disposition: attachment;filename={$filename}"); | |
header("Content-Transfer-Encoding: binary"); | |
} | |
Usage example: | |
download_send_headers("data_export_" . date("Y-m-d") . ".csv"); | |
echo array2csv($array); | |
die(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
} | |
Then you can make your user download that file using something like: | |
function download_send_headers($filename) { | |
header("Pragma: public"); | |
header("Expires: 0"); | |
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); | |
header("Content-Type: application/force-download"); | |
header("Content-Type: application/octet-stream"); | |
header("Content-Type: application/download"); | |
header("Content-Disposition: attachment;filename={$filename}"); | |
header("Content-Transfer-Encoding: binary"); | |
} | |
Usage example: | |
download_send_headers("data_export_" . date("Y-m-d") . ".csv"); | |
echo array2csv($array); | |
die(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment