Skip to content

Instantly share code, notes, and snippets.

@madeinnordeste
Created May 3, 2014 01:00
Show Gist options
  • Save madeinnordeste/0527391721a26179fef3 to your computer and use it in GitHub Desktop.
Save madeinnordeste/0527391721a26179fef3 to your computer and use it in GitHub Desktop.
PHP - Parse CSV files
<?php
$fh = fopen("contacts.csv", "r");
while($line = fgetcsv($fh, 1000, ",")) {
echo "Contact: {$line[1]}";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment