Я хочу Скачать отчет в excel у меня есть следующий код
$filename='Rake Report '.$rail_head.'.xls'; //save our workbook as this file name header('Content-Type: application/vnd.ms-excel'); //mime type header('Content-Disposition: attachment;filename="'.$filename.'"'); //tell browser what's the file name header('Cache-Control: max-age=0'); //no cache //save it to Excel5 format (excel 2003 .XLS file), change this to 'Excel2007' (and adjust the filename extension, also the header mime type) //if you want to save it as .XLSX Excel 2007 format $objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5'); //force user to download the Excel file without writing it to server's HD $objWriter->save('php://output');
Но это дает ошибку As: Excel не может открыть файл, потому что формат файла и расширение недопустимы.
Что я уже пробовал:
я пытался открыть файл в Apache OpenOffice и в LibreOffice также, но там остается та же проблема.Любая помощь будет оценена заранее.