Tag
xlsx
Download Several Excel Files As One ZIP In PHP Using PHPSpreadSheet
Sending one workbook to the browser is straightforward; sending five is not. This article builds several spreadsheets, collects them with PHP’s ZipArchive, and streams the finished archive as…
August 9, 2026 · PhpSpreadsheet
Set Sheet View Options In Excel Files In PHP Using PHPSpreadSheet
Zoom level, the selected cell and right-to-left layout decide what a reader sees in the first second after double-clicking your file, without changing a single value inside it.…
August 8, 2026 · PhpSpreadsheet
Set The Worksheet Tab Color In Excel Files In PHP Using PHPSpreadSheet
Once a workbook holds more than three or four sheets the tab strip becomes the navigation, and coloring it is one call per sheet with getTabColor()->setRGB(). Two things…
August 8, 2026 · PhpSpreadsheet
Rotate Text In A Cell In Excel Files In PHP Using PHPSpreadSheet
Tilting a header row 45 degrees is a single call to getAlignment()->setTextRotation(), and it saves you from either stretching every column to the width of its title or…
August 8, 2026 · PhpSpreadsheet
Add Data Bars, Color Scales And Icon Sets In Excel Files In PHP Using PHPSpreadSheet
Data bars, color scales and icon sets are the graphical conditional formats: the bar filling each cell, the red-to-green heat map, the row of traffic lights. They use…
August 7, 2026 · PhpSpreadsheet
Sort Rows Before Writing An Excel File In PHP Using PHPSpreadSheet
PhpSpreadsheet has no sort() method and never has, because a worksheet is a grid of cells rather than a list of records. You sort the PHP array first…
August 7, 2026 · PhpSpreadsheet
Create An Excel Table In PHP Using PHPSpreadSheet
An Excel Table is more than styled cells — it is a named object with filter dropdowns, banded rows and structured references. Build one with PhpSpreadsheet's Table and…
August 6, 2026 · PhpSpreadsheet
Use VLOOKUP In Excel Files In PHP Using PHPSpreadSheet
VLOOKUP searches the first column of a table and returns a value from the same row. Write one across a lookup table with PhpSpreadsheet, get the absolute-versus-relative references…
August 6, 2026 · PhpSpreadsheet
Save One Spreadsheet As XLSX, XLS And ODS In PHP Using PHPSpreadSheet
A Spreadsheet object is format-independent — the format is decided only when a writer serialises it. Build the workbook once and save it as .xlsx, .xls and .ods…
August 4, 2026 · PhpSpreadsheet