Skip to content

Instantly share code, notes, and snippets.

@djtwigg
djtwigg / Excel
Created July 24, 2013 08:50
Download CSV file
Add to helpers
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) {