Skip to content

Instantly share code, notes, and snippets.

@steffenr
Created February 28, 2011 08:18
Show Gist options
  • Save steffenr/847075 to your computer and use it in GitHub Desktop.
Save steffenr/847075 to your computer and use it in GitHub Desktop.
<?php
require_once 'File/CSV/DataSource.php';
$path = "my_csv.txt";
$csv = new File_CSV_DataSource;
$csv->settings = array(
delimiter' => '|',
'eol' => ";",
'length' => 999999,
'escape' => '"'
);
$csv->load($path);
$header = $csv->getHeaders();
print_r($header);
$daten = $csv->getRows();
print_r($daten);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment