Skip to content

Instantly share code, notes, and snippets.

@blar
Created September 19, 2017 13:42
Show Gist options
  • Save blar/3c4694bb6cda3e1b90db124622b506dd to your computer and use it in GitHub Desktop.
Save blar/3c4694bb6cda3e1b90db124622b506dd to your computer and use it in GitHub Desktop.
<?php
$file = fopen('test.csv', 'r');
$headers = $data = fgetcsv($file, 1000, ',');
while($values = fgetcsv($file, 1000, ',')) {
$entry = array_combine($headers, $values);
}
fclose($file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment