Skip to content

Instantly share code, notes, and snippets.

View kcclemo's full-sized avatar

Kirk Clemons kcclemo

  • Chief Architect Software
  • Rathdrum, ID
View GitHub Profile
@kcclemo
kcclemo / csv_to_array.php
Created November 10, 2020 15:37 — forked from jaywilliams/csv_to_array.php
Convert a comma separated file into an associated array.
<?php
/**
* Convert a comma separated file into an associated array.
* The first row should contain the array keys.
*
* Example:
*
* @param string $filename Path to the CSV file
* @param string $delimiter The separator used in the file
* @return array