vielhuber / excelhelper
A super simple excel wrapper in php.
Installs: 1 010
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.4
- phpoffice/phpspreadsheet: >=1.5
Requires (Dev)
- phpunit/phpunit: ^9
README
📗 excelhelper 📗
excelhelper is a helper for excel.
with its help you can write and read to xlsx/xls/csv in php in a very simple, webdev-friendly way. it also handles issues with big numbers and other quirks.
installation
install once with composer:
composer require vielhuber/excelhelper
then add this to your files:
require __DIR__ . '/vendor/autoload.php'; use vielhuber\excelhelper\excelhelper;
usage
reading
$array = excelhelper::read([ 'file' => 'file.xlsx', 'first_line' => true, // true|false 'format_cells' => false, // false|true 'all_sheets' => false, // false|true 'friendly_keys' => false // false|true ]);
writing
excelhelper::write([ 'file' => 'file.xlsx', // can write xlsx, xls and csv; if null, a filename is suggested 'engine' => 'phpspreadsheet', 'output' => 'save', // save|download 'style_header' => true, // true|false 'autosize_columns' => true, // true|false 'auto_borders' => true, // true|false 'remove_empty_cols' => false, // true|false 'data' => [ ['a1', 'b1', 'c1'], ['a2', 'b2', 'c2'], [ [ 'value' => 'a3', 'background-color' => '#ff0000', 'color' => '#ffffff', 'font-weight' => 'bold', 'border' => '1px solid #000', 'text-align' => 'center' ], [ 'value' => 'b3', 'background-color' => '#ff0000', 'color' => '#ffffff', 'font-weight' => 'bold', 'border' => '1px solid #000', 'text-align' => 'left' ], [ 'value' => 'c3', 'background-color' => '#ff0000', 'color' => '#ffffff', 'font-weight' => 'bold', 'border' => '1px solid #000', 'text-align' => 'right' ] ] ] ]);
excelhelper::write([ 'file' => 'file.xlsx', 'engine' => 'phpspreadsheet', 'output' => 'save', 'data' => [ 'Sheet 1' => [['a1', 'b1', 'c1'], ['a2', 'b2', 'c2']], 'Sheet 2' => [['a1', 'b1', 'c1'], ['a2', 'b2', 'c2']], 'Sheet 3' => [['a1', 'b1', 'c1'], ['a2', 'b2', 'c2']] ] ]);