paulloft/xlsx2csv

Lightweight and sImple xlsx to csv converter

1.0 2021-12-27 19:36 UTC

This package is auto-updated.

Last update: 2024-09-28 01:29:27 UTC


README

Lightweight and simple XLSX to CSV converter. Works faster and consumes less memory than converting via PHPExcell

Usages

$converter = new \Utils\XlsxToCsv('example.xlsx');
$converter->convert('example.csv');

Installation

Requres PHP 7.3 or higher

Add paulloft/xlsx2csv to your composer.json.

"require": {
    "paulloft/xlsx2csv": "*"
}

or run in shell

composer require paulloft/xlsx2csv