Skip to content

Instantly share code, notes, and snippets.

@denkurbatov
denkurbatov / excel.php
Last active April 30, 2017 16:07
excel.php
public function downloadFileAction($file_name)
{
// Redirect output to a client’s web browser (Excel2007)
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="' . $file_name . '.xlsx' .'"');
header('Cache-Control: max-age=0');
// If you're serving to IE 9, then the following may be needed
header('Cache-Control: max-age=1');
// If you're serving to IE over SSL, then the following may be needed