Skip to content

Instantly share code, notes, and snippets.

@slav123
Created August 7, 2014 01:00
Show Gist options
  • Save slav123/2b75526c276f227ed9ec to your computer and use it in GitHub Desktop.
Save slav123/2b75526c276f227ed9ec to your computer and use it in GitHub Desktop.
CSV directly to browser
<?php
$out = fopen('php://output', 'w');
fputcsv($out, array('this','is some', 'csv "stuff", you know.'));
fclose($out);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment