Created
August 7, 2014 01:00
-
-
Save slav123/2b75526c276f227ed9ec to your computer and use it in GitHub Desktop.
CSV directly to browser
This file contains hidden or 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 | |
$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