This documentation for version 4.x. Documentation for ver. 3.x see here.
Jump To:
- Introduction
- Changes in version 4
- Simple Example
- Advanced Example
- Height And Width
- Define Named Ranges
- Adding Notes
- Workbook
- Sheets
- Writing
- Styles
- Do you want to support FastExcelWriter?
This library is designed to be lightweight, super-fast and requires minimal memory usage.
This library creates Excel compatible spreadsheets in XLSX format (Office 2007+), with just basic features supported:
- Takes UTF-8 encoded input
- Multiple worksheets
- Supports currency/date/numeric cell formatting, formulas and active hyperlinks
- Supports basic column, row and cell styling
- You can set the height of the rows and the width of the columns (including auto width calculation)
PhpSpreadsheet is a perfect library with wonderful features for reading and writing many document formats. FastExcelWriter can only write and only in XLSX format, but does it very fast and with minimal memory usage (if you need read XLSX-files the see FastExcelReader - https://github.com/aVadim483/fast-excel-reader).
FastExcelWriter:
- 7-9 times faster
- uses less memory by 8-10 times
- supports writing huge 100K+ row spreadsheets
Benchmark of PhpSpreadsheet (P) and FastExcelWriter (F), spreadsheet generation without styles
Rows x Cols | Time P | Time F | Memory P | Memory F |
---|---|---|---|---|
1000 x 5 | 0.98 sec | 0.19 sec | 2,048 Kb | 2,048 Kb |
1000 x 25 | 4.68 sec | 1.36 sec | 14,336 Kb | 2,048 Kb |
5000 x 25 | 23.19 sec | 3.61 sec | 77,824 Kb | 2,048 Kb |
10000 x 50 | 105.8 sec | 13.02 sec | 256,000 Kb | 2,048 Kb |
Use composer
to install FastExcelWriter into your project:
composer require avadim/fast-excel-writer
Also, you can download package and include autoload file of the library:
require 'path/to/fast-excel-writer/src/autoload.php';
- Now the library works even faster
- Added a fluent interface for applying styles.
- New methods and code refactoring
You can find usage examples below or in /demo folder
use \avadim\FastExcelWriter\Excel;
$data = [
['2003-12-31', 'James', '220'],
['2003-8-23', 'Mike', '153.5'],
['2003-06-01', 'John', '34.12'],
];
$excel = Excel::create(['Sheet1']);
$sheet = $excel->getSheet();
// Write heads
$sheet->writeRow(['Date', 'Name', 'Amount']);
// Write data
foreach($data as $rowData) {
$rowOptions = [
'height' => 20,
];
$sheet->writeRow($rowData, $rowOptions);
}
$excel->save('simple.xlsx');
Also, you can download generated file to client (send to browser)
$excel->download('download.xlsx');
use \avadim\FastExcelWriter\Excel;
$head = ['Date', 'Name', 'Amount'];
$data = [
['2003-12-31', 'James', '220'],
['2003-8-23', 'Mike', '153.5'],
['2003-06-01', 'John', '34.12'],
];
$headStyle = [
'font' => [
'style' => 'bold'
],
'text-align' => 'center',
'vertical-align' => 'center',
'border' => 'thin',
'height' => 24,
];
$excel = Excel::create(['Sheet1']);
$sheet = $excel->getSheet();
// Write the head row (sets style via array)
$sheet->writeHeader($head, $headStyle);
// The same result with new fluent interface
$sheet->writeHeader($head)
->applyFontStyleBold()
->applyTextAlign('center', 'center')
->applyBorder(Style::BORDER_STYLE_THIN)
->applyRowHeight(24);
// Sets columns options - format and width (the first way)
$sheet
->setColFormats(['@date', '@text', '0.00'])
->setColWidths([12, 14, 5]);
// The seconds way to set columns options
$sheet
// column and options
->setColOptions('A', ['format' => '@date', 'width' => 12])
// column letter in lower case
->setColOptions('b', ['format' => '@text', 'width' => 24])
// column can be specified by number
->setColOptions(3, ['format' => '0.00', 'width' => 15, 'color' => '#090'])
;
// The third way - all options in multilevel array (first level keys point to columns)
$sheet
->setColOptions([
'A' => ['format' => '@date', 'width' => 12],
'B' => ['format' => '@text', 'width' => 24],
'C' => ['format' => '0.00', 'width' => 15, 'color' => '#090'],
]);
$rowNum = 1;
foreach($data as $rowData) {
$rowOptions = [
'height' => 20,
];
if ($rowNum % 2) {
$rowOptions['fill-color'] = '#eee';
}
$sheet->writeRow($rowData, $rowOptions);
}
$excel->save('simple.xlsx');
// Set height of row 2 to 33
$sheet->setRowHeight(2, 33);
// Set heights of several rows
$sheet->setRowHeights([1 => 20, 2 => 33, 3 => 40]);
// Write row data and set height
$sheet->writeRow($rowData, ['height' => 20]);
// Set width of column D to 24
$this->setColWidth('D', 24);
$this->setColOptions('D', ['width' => 24]);
// Set auto width
$this->setColWidth('D', 'auto');
$this->setColWidthAuto('D');
$this->setColOptions('D', ['width' => 'auto']);
// Set width of specific columns
$sheet->setColWidths(['B' => 10, 'C' => 'auto', 'E' => 30, 'F' => 40]);
$colOptions = [
'B' => ['width' => 10],
'C' => ['width' => 'auto'],
'E' => ['width' => 30],
'F' => ['width' => 40],
];
$sheet->setColOptions($colOptions);
// Set width of columns from 'A'
$sheet->setColWidths([10, 20, 30, 40]);
FastExcelWriter supports named ranges and does not support named formulae. A named ranges provides a name reference to a cell or a range of cells. All named ranges are added to the workbook so all names must be unique, but you can define named ranges in a sheet or in a workbook.
Also range names must start with a letter or underscore, have no spaces, and be no longer than 255 characters.
$excel = Excel::create();
$excel->setFileName($outFileName);
$sheet = $excel->getSheet();
// Named a single cell
$sheet->addNamedRange('B2', 'cell_name');
// Named range in a sheet
$sheet->addNamedRange('c2:e3', 'range_name');
// Add named range in a workbook (sheet name required)
$excel->addNamedRange('Sheet1!A1:F5', 'A1_F5');
There are currently two types of comments in Excel - comments and notes
(see The difference between threaded comments and notes.
Notes are old style comments in Excel (text on a light yellow background).
You can add notes to any cells using method addNote()
$sheet->writeCell('Text to A1');
$sheet->addNote('A1', 'This is a note for cell A1');
$sheet->writeCell('Text to B1')->addNote('This is a note for B1');
$sheet->writeTo('C4', 'Text to C4')->addNote('Note for C1');
$sheet->addNote('E4:F8', 'This note will added to E4');
if you find this package useful you can support and donate to me for a cup of coffee:
- USDT (TRC20) TSsUFvJehQBJCKeYgNNR1cpswY6JZnbZK7
- USDT (ERC20) 0x5244519D65035aF868a010C2f68a086F473FC82b
Or just give me star on GitHub :)