Skip to content

Instantly share code, notes, and snippets.

View bhargav960143's full-sized avatar

Bhargav bhargav960143

View GitHub Profile
@bhargav960143
bhargav960143 / parse-csv.php
Created October 29, 2018 12:52 — 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 )