-
-
Save AucT/da311f2633ef5a6c977152f48f72fa7b to your computer and use it in GitHub Desktop.
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
<?php | |
/** | |
* Takes in a filename and an array associative data array and outputs a csv file | |
* @param string $fileName | |
* @param array $assocDataArray | |
*/ | |
public function outputCsv($fileName, $assocDataArray) | |
{ | |
ob_clean(); | |
header('Pragma: public'); | |
header('Expires: 0'); | |
header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); | |
header('Cache-Control: private', false); | |
header('Content-Type: text/csv'); | |
header('Content-Disposition: attachment;filename=' . $fileName); | |
if(isset($assocDataArray['0'])){ | |
$fp = fopen('php://output', 'w'); | |
fputcsv($fp, array_keys($assocDataArray['0'])); | |
foreach($assocDataArray AS $values){ | |
fputcsv($fp, $values); | |
} | |
fclose($fp); | |
} | |
ob_flush(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment