Skip to content

Instantly share code, notes, and snippets.

View benigno027's full-sized avatar
🏠
Working from home

Benigno Moreno benigno027

🏠
Working from home
View GitHub Profile
@benigno027
benigno027 / parse-csv.php
Created August 30, 2019 21:46 — forked from benbalter/parse-csv.php
Parse CSV into Associative Array
<?php
$lines = explode( "\n", file_get_contents( 'input.csv' ) );
$headers = str_getcsv( array_shift( $lines ) );
$data = array();
foreach ( $lines as $line ) {
$row = array();
foreach ( str_getcsv( $line ) as $key => $field )