Skip to content

Instantly share code, notes, and snippets.

@mrwadson
Last active April 8, 2024 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrwadson/77a1e3d1e72fe73037d4b141fe69ee87 to your computer and use it in GitHub Desktop.
Save mrwadson/77a1e3d1e72fe73037d4b141fe69ee87 to your computer and use it in GitHub Desktop.
Simple read CSV files (str_getcsv)
<?php
const CSV_FILENAME = __DIR__ . '/somefile.csv';
$csvFile = file(CSV_FILENAME);
$data = [];
foreach ($csvFile as $line) {
$data[] = str_getcsv($line);
}
// Or
$csv = array_map('str_getcsv', file(CSV_FILENAME));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment