Tag
PhpSpreadsheet
Import An Excel File Into Google Sheets Using Google Sheets API PHP Client
PhpSpreadsheet opens the workbook and the Google client writes the rows, but the two libraries disagree about what a cell is. Reference codes like 007 arrive as 7,…
August 12, 2026 · Google Sheets API PHP Client
Read Large Excel Files In Chunks In PHP Using PHPSpreadSheet
This article shows how to read a large Excel file a few thousand rows at a time instead of all at once, using a read filter. Loading a…
July 22, 2026 · PhpSpreadsheet
Read Formula Results In Excel Files In PHP Using PHPSpreadSheet
This article shows how to read what a formula in an Excel file actually works out to, rather than the formula itself. Reading a cell with getValue() returns…
July 21, 2026 · PhpSpreadsheet
Export MySQL Data To Excel Files In PHP Using PHPSpreadSheet
This article shows how to run a query against MySQL and turn the result into a formatted .xlsx file with PhpSpreadsheet. The column names become the header row,…
July 20, 2026 · PhpSpreadsheet
Import Excel Files Into MySQL In PHP Using PHPSpreadSheet
This article shows how to read an Excel file with PhpSpreadsheet and load its rows into a MySQL table. The first row of the spreadsheet is treated as…
July 19, 2026 · PhpSpreadsheet
Download Excel Files In The Browser In PHP Using PHPSpreadSheet
Build a spreadsheet with PhpSpreadsheet and send it straight to the browser as a file download, without ever writing it to disk. The script streams the workbook in…
July 18, 2026 · PhpSpreadsheet