Skip to content

Instantly share code, notes, and snippets.

@mhz-tamb
Created November 15, 2016 13:58
Show Gist options
  • Save mhz-tamb/bc1c24a518238f3a71397a089adc3292 to your computer and use it in GitHub Desktop.
Save mhz-tamb/bc1c24a518238f3a71397a089adc3292 to your computer and use it in GitHub Desktop.
<?php
$csv = new \SplFileObject('file.csv');
$result = [];
while(false === $csv->eof()) {
$headers = $headers ? $headers : $csv->fgetcsv();
$result[] = array_combine($headers, $csv->fgetcsv());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment