SimpleCsv
id;name
1;foo
2;bar
3;baz
foreach (new CsvParser('example.csv', ';') as $row) {
echo $row['id'] . ': ' . $row['name'];
}
id;name
1;foo
2;bar
3;baz
foreach (new CsvParser('example.csv', ';') as $row) {
echo $row['id'] . ': ' . $row['name'];
}