Skip to content

Instantly share code, notes, and snippets.

@bmadigan
Created April 17, 2012 15:23
Show Gist options
  • Save bmadigan/2406732 to your computer and use it in GitHub Desktop.
Save bmadigan/2406732 to your computer and use it in GitHub Desktop.
Parse A CVS File
$csv_file = 'export-test.csv';
ini_set("auto_detect_line_endings", true); // Needed for for some reason
$csvfile = fopen($csv_file,'rb');
echo '<h3>Importing CSV File into system ...</h3>';
while(!feof($csvfile)) {
$csvarray[] = fgetcsv($csvfile);
}
echo '<pre>';print_r($csvarray);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment