Skip to content

Instantly share code, notes, and snippets.

View wimwam's full-sized avatar
🎯
Focusing

Wiebe wimwam

🎯
Focusing
View GitHub Profile
@wimwam
wimwam / sample.php
Created October 14, 2025 10:59 — forked from damijanc/sample.php
Example on how to download an Excel file created with PhpSpreadsheet
<?php
$streamedResponse = new StreamedResponse();
$streamedResponse->setCallback(function () {
$spreadsheet = //create you spreadsheet here;
$writer = new Xlsx($spreadsheet);
$writer->save('php://output');
});