Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yoanmarchal/9544982 to your computer and use it in GitHub Desktop.
Save yoanmarchal/9544982 to your computer and use it in GitHub Desktop.
function generateCsv($data, $delimiter = ',', $enclosure = '"') {
$handle = fopen('php://temp', 'r+');
foreach ($data as $line) {
fputcsv($handle, $line, $delimiter, $enclosure);
}
rewind($handle);
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
fclose($handle);
return $contents;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment