Skip to content

Instantly share code, notes, and snippets.

@umpirsky
Created June 8, 2011 19:27
Show Gist options
  • Save umpirsky/1015158 to your computer and use it in GitHub Desktop.
Save umpirsky/1015158 to your computer and use it in GitHub Desktop.
Read csv file with a style
<?php
$file = new SplFileObject('/path/to/file.csv', 'rb');
$file->setFlags(SplFileObject::READ_CSV | SplFileObject::SKIP_EMPTY);
$file->setCsvControl(';');
foreach($file as $data) {
// $data is array
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment