cyrille37/php-csv-reader
最新稳定版本:v1.2
Composer 安装命令:
composer require cyrille37/php-csv-reader
包简介
Simple & efficient CSV reader for Php
README 文档
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 );
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2022-10-02