Download the PHP package graze/csv-token without Composer
On this page you can find all versions of the php package graze/csv-token. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package csv-token
csv-token
Tokenised Csv Reader that handles some of the strange configurations databases and application use.
- Parses tokens and csv from streams and outputs using a Lazy Iterator
Csv Feature | Example | Array |
---|---|---|
Delimiter | thing|other |
['thing','other'] |
Quote Enclosure | "quote, here",not here |
['quote, here', 'not here'] |
Escaping | "\"text","new\\nline" |
['"text',"new\\\nline"] |
Double Quotes | """text","more" |
['"text','more'] |
Double Quotes and Escaping | """text","\, text" |
['"text',', text'] |
Null value parsing | "text",\\N,"text" |
['text',null,'text'] |
Boolean value parsing | "text",false,true |
['text',false,true] |
Numeric value parsing | "text",1,-2.3,3.1e-24 |
['text',1,-2.3,3.1e-24] |
Handling of Byte Order Marks | <UTF8BOM>"text","things" |
['text','things'] |
Install
Via Composer
Usage
Simple reader
More advanced parsing (with value parsers)
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Harry Bragg
- All Contributors
- Original Idea: jfsimon/php-csv
License
The MIT License (MIT). Please see License File for more information.
All versions of csv-token with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.6.0
The package graze/csv-token contains the following files
Loading the files please wait ....