Skip to content

Instantly share code, notes, and snippets.

View hannemario's full-sized avatar

Hanne-Mari Odden hannemario

View GitHub Profile
@devfaysal
devfaysal / csv-to-json.php
Last active February 6, 2023 10:04
CSV to JSON
<?php
/*
* Converts CSV to JSON
* Example uses the csv file of this gist
*/
$feed="https://gist.githubusercontent.com/devfaysal/9143ca22afcbf252d521f5bf2bdc6194/raw/ec46f6c2017325345e7df2483d8829231049bce8/data.csv";
//Read the csv and return as array
$data = array_map('str_getcsv', file($feed));
//Get the first raw as the key
$keys = array_shift($data);