mk-j / PHP_XLSXWriter

Lightweight XLSX Excel Spreadsheet Writer in PHP
MIT License
1.84k stars 663 forks source link

Is this streaming the info from memory to disk? #356

Closed marius-mcp closed 7 months ago

marius-mcp commented 7 months ago

I know that PhpSpreadsheet is NOT capable of streaming data from memory to disk as opposed to ExcelJs. This inability forces the file to be written 100% before sending it to disk. Found this out while using https://docs.laravel-excel.com/3.1/getting-started/upgrade.html#upgrading-to-3-from-2-1.

So, is this lib capable of streaming data or not?

Nevermind. I see it is using PHPExcel(which is unmaintained) instead of PhpSpreadsheet...

https://stackoverflow.com/a/41118123