Created
September 6, 2013 12:50
-
-
Save oswaldoacauan/6463338 to your computer and use it in GitHub Desktop.
PHP - CSV Generator
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 | |
$csvFile = fopen('teste.csv', 'w'); | |
fwrite($csvFile, "sep=,\r\n"); | |
foreach($arrData as $row) { | |
fputcsv($csvFile, array_values($row)); | |
} | |
fclose($csvFile); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment