Skip to content
Advertisement

PhpSpreadsheet – Download file instead of saving it

I need to generate an excel file (xls) and trigger the download after it is generated. I found this example in the documentation.

JavaScript

It shows how to create a excel file and save it on the server. How can I serve the result to the client instead and “force” him to download it? I need to get the data of the $writer somehow.

I am currently solving it without PhpSpreadsheet:

JavaScript

But it is not working with my delimiter (semicolon). The semicolon is not getting interpreted and everything is getting written into one column.

enter image description here

If I export it as .csv, then it works. But I need it as .xls or .xlsx

Advertisement

Answer

I solved it with a workaround. I temporarily save the file on the server, then I load the content into a variable and serve it as a download file. Then I delete the file from the server.

Workaround:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement