cyrille37 / php-csv-reader
Simple & efficient CSV reader for Php
This package's canonical repository appears to be gone and the package has been frozen as a result.
v1.2
2022-10-03 11:17 UTC
Requires (Dev)
- phpunit/phpunit: ^9.5.10
README
Simple CSV Reader for Php.
Can read large file without consuming memory because it uses an iterator with a Generator that only read one line at a time.
Give access to columns by their "name".
Install
composer require cyrille37/php-csv-reader
Usage
$csv = new CsvReader( 'foo.csv' );
foreach( $csv->getRows() as $row )
{
echo $row['some column name'];
}
$csv_separator = ';' ;
$csv = new CsvReader( 'foo.csv', $csv_separator );