Skip to content

Instantly share code, notes, and snippets.

@erowsika
Created December 10, 2021 12:39
Show Gist options
  • Save erowsika/7e4352e862203118650c2707b293b385 to your computer and use it in GitHub Desktop.
Save erowsika/7e4352e862203118650c2707b293b385 to your computer and use it in GitHub Desktop.
<?php
function csv_to_array($filename, $delimiter = "\t")
{
$header = null;
$data = [];
if (($handle = fopen($filename, 'r')) !== FALSE) {
while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
if(!$header)
$header = $row;
else
$data[] = array_combine($header, $row);
}
fclose($handle);
}
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment