PHPSpreadsheet · Google Sheets API · Excel
Spreadsheets, driven by code.
Hands-on PHP tutorials for working with Excel and Google Sheets — read and
write .xlsx, convert files to JSON, stream downloads in the
browser, and insert images, formulas, and styling. Every guide ships with
code you can copy, run, and adapt.
Latest complete code
foreach (glob('broken/*.xlsx') as $path) {
[$spreadsheet, $why] = loadSafely($path);
if ($spreadsheet === null) {
printf("%-16s REJECTED - %s\n", basename($path), $why);
continue;
}
$worksheet = $spreadsheet->getActiveSheet();
printf(
"%-16s ACCEPTED - sheet \"%s\", %d rows, %d columns\n",
basename($path),
$worksheet->getTitle(),
$worksheet->getHighestRow(),
\PhpOffice\PhpSpreadsheet\Cell\Coordinate::columnIndexFromString($worksheet->getHighestColumn())
);
}
The full script from Reject A Corrupt Or Unreadable Excel File In PHP Using PHPSpreadSheet — copy, run, adapt.
Key methods
IOFactory::load()
PhpSpreadsheet
getActiveSheet()
PhpSpreadsheet
fromArray()
PhpSpreadsheet
getCalculatedValue()
PhpSpreadsheet
save('php://output')
PhpSpreadsheet
spreadsheets_values->get()
Google Sheets
spreadsheets_values->update()
Google Sheets
spreadsheets->create()
Google Sheets
json_encode()
PHP
header()
PHP
Latest articles
Reject A Corrupt Or Unreadable Excel File In PHP Using PHPSpreadSheet
August 10, 2026
Print Gridlines In Excel Files In PHP Using PHPSpreadSheet
August 9, 2026
Add Strikethrough, Superscript And Subscript Text In Excel Files In PHP Using PHPSpreadSheet
August 9, 2026
Download Several Excel Files As One ZIP In PHP Using PHPSpreadSheet
August 9, 2026
Set Sheet View Options In Excel Files In PHP Using PHPSpreadSheet
August 8, 2026
Set The Worksheet Tab Color In Excel Files In PHP Using PHPSpreadSheet
August 8, 2026
Rotate Text In A Cell In Excel Files In PHP Using PHPSpreadSheet
August 8, 2026
Add Data Bars, Color Scales And Icon Sets In Excel Files In PHP Using PHPSpreadSheet
August 7, 2026
Sort Rows Before Writing An Excel File In PHP Using PHPSpreadSheet
August 7, 2026
Browse by technique