agentsib/csv-reader
Composer 安装命令:
composer require agentsib/csv-reader
包简介
Simple way read CSV file
关键字:
README 文档
README
Simple way read CSV file
Installation
Install via composer:
composer require agentsib/csv-reader
Read CSV file with headers
Example file test.csv:
id;name;value
1;test1;value1
2;test2;value2
Read file:
<? $resource = fopen('test.csv','r'); $csv = new AgentSIB\CsvReader\CsvReader($resource, true, ';'); // Get headers array $csv->getHeaders(); // ["id", "name", "value"] // Check header $csv->hasHeader('id'); // true foreach ($csv as $row) { // Get value by column number echo $row[1]; // test1,test2 // Get value by column name echo $row['value']; // value1,value2 // Get value by not exists column echo $row['not_exists']; // null // Check value for exists isset($row[1]); // true isset($row[20]); // false isset($row['value']); //true isset($row['not_exists']); //false } $csv->rewind(); $firstRow = $csv->current(); foreach ($firstRow as $key => $value) { echo $key.' => '.$value.PHP_EOL; } // id => 1 // name => test1 // value => value1 // Replace headers example $csv->replaceHeaders(['prop_id', 'prop_name', 'prop_value']); $csv->getHeaders(); // ['prop_id', 'prop_name', 'prop_value'] $csv->rewind(); $firstRow = $csv->current(); foreach ($firstRow as $key => $value) { echo $key.' => '.$value.PHP_EOL; } // prop_id => 1 // prop_name => test1 // prop_value => value1 // Replace headers example 2 $csv->replaceHeaders(['prop_id', 'prop_name']); $csv->getHeaders(); // ['prop_id', 'prop_name'] $csv->rewind(); $firstRow = $csv->current(); foreach ($firstRow as $key => $value) { echo $key.' => '.$value.PHP_EOL; } // prop_id => 1 // prop_name => test1
Read CSV file without headers
Example file test.csv:
1;test1;value1
2;test2;value2
Read file:
<? $resource = fopen('test.csv','r'); $csv = new AgentSIB\CsvReader\CsvReader($resource, false, ';'); // Get headers array $csv->getHeaders(); // [] foreach ($csv as $row) { // Get value by column number echo $row[1]; // test1,test2 echo $row[20]; // null,null // Check value for exists isset($row[1]); // true isset($row[20]); // false } $csv->rewind(); $firstRow = $csv->current(); foreach ($firstRow as $key => $value) { echo $key.' => '.$value.PHP_EOL; } // 0 => 1 // 1 => test1 // 2 => value1 // Replace headers example $csv->replaceHeaders(['prop_id', 'prop_name', 'prop_value']); $csv->getHeaders(); // ['prop_id', 'prop_name', 'prop_value'] $csv->rewind(); $firstRow = $csv->current(); foreach ($firstRow as $key => $value) { echo $key.' => '.$value.PHP_EOL; } // prop_id => 1 // prop_name => test1 // prop_value => value1 // Replace headers example 2 $csv->replaceHeaders(['prop_id', 'prop_name']); $csv->getHeaders(); // ['prop_id', 'prop_name'] $csv->rewind(); $firstRow = $csv->current(); foreach ($firstRow as $key => $value) { echo $key.' => '.$value.PHP_EOL; } // prop_id => 1 // prop_name => test1
You can set headers on initialize:
<?php $resource = fopen('test.csv','r'); $csv = new AgentSIB\CsvReader\CsvReader($resource, ['id', 'name', 'value'], ';'); // Get headers array $csv->getHeaders(); // ['id', 'name', 'value'] $csv->rewind(); $firstRow = $csv->current(); foreach ($firstRow as $key => $value) { echo $key.' => '.$value.PHP_EOL; } // id => 1 // name => test1 // value => value1
Known issue
If you use stream php://input, you need save content to another stream, because rewind function not work in this case.
For example:
<?php $resource = fopen('php://input', 'rb'); $r = fopen('php://memory', 'r+'); fwrite($r, stream_get_contents($resource)); rewind($r); $csv = new AgentSIB\CsvReader\CsvReader($r);
agentsib/csv-reader 适用场景与选型建议
agentsib/csv-reader 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 66.82k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2018 年 09 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「csv」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 agentsib/csv-reader 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 agentsib/csv-reader 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 agentsib/csv-reader 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
laravel facade to read/write csv file
Collection of tools to use the full power of the Enyalius framework
Fast Excel import/export for Laravel
Spreadsheet reader library for Excel, OpenOffice and structured text files, compatible with cakephp3
A formatting library that converts data output between XML, CSV, JSON, TXT, YAML and a few others.
Scan URLs FROM A CSV FILE AND REPORT INACCESSIBLE URLs
统计信息
- 总下载量: 66.82k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 25
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-27