Download the PHP package ajenguianis/easy-file-parser without Composer
On this page you can find all versions of the php package ajenguianis/easy-file-parser. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ajenguianis/easy-file-parser
More information about ajenguianis/easy-file-parser
Files in ajenguianis/easy-file-parser
Download ajenguianis/easy-file-parser
More information about ajenguianis/easy-file-parser
Files in ajenguianis/easy-file-parser
Vendor ajenguianis
Package easy-file-parser
Short Description Library to parse easily csv, xlsx and txt files.
License MIT
Package easy-file-parser
Short Description Library to parse easily csv, xlsx and txt files.
License MIT
Please rate this library. Is it a good library?
Informations about the package easy-file-parser
PHP FTP and SFTP Client Connector Library
The EasyFileParser PHP library simplifies the process of parsing various file formats, including TXT, XLSX, and CSV. It offers a collection of reusable code components that streamline data extraction and manipulation from these file types, making it an essential tool for data processing tasks.
Features
- Seamless parsing of TXT, XLSX, and CSV files.
- Reusable code components for efficient data extraction.
- Simplified integration into your PHP projects.
- Enhance your data processing capabilities with minimal effort.
Getting Started
To get started with our library, you can install it via Composer:
composer require ajenguianis/easy-file-parser
Usage
Load file
Detect parser by extension and parse file:
$parser= new Parser($path);
$parser->parse($path, $mode); mode is mondatory only if csv file
Set header index
$parser->setHeaderOffset(0);
Set delimiter
$parser->setDelimiter(';');
Get rows
$params=[
'offset'=>0,
'limit'=>10
];
#if xlsx file
$params=[
'sheetName'=>'import',
'offset'=>0,
'limit'=>10
];
If you need all records set limit to null
$parser->getRecords($params);
All versions of easy-file-parser with dependencies
PHP Build Version
Package Version
The package ajenguianis/easy-file-parser contains the following files
Loading the files please wait ....