Skip to content

Instantly share code, notes, and snippets.

@av-jok
Forked from ig0r74/csv-to-php.php
Created January 12, 2021 02:22
Show Gist options
  • Save av-jok/6f75dacd018182ed4b7f38ccb38d0526 to your computer and use it in GitHub Desktop.
Save av-jok/6f75dacd018182ed4b7f38ccb38d0526 to your computer and use it in GitHub Desktop.
CSV to PHP
<?php
$csvData = file_get_contents($fileName);
$lines = explode(PHP_EOL, $csvData);
$array = array();
foreach ($lines as $line) {
$array[] = str_getcsv($line);
}
print_r($array);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment