我需要一些帮助。我想知道如果我想将PHPexcel生成的excel文件发送到用户下载文件夹该怎么办。该应用程序在本地网络中工作,它处理计费。如果用户点击应用程序中定义的打印按钮,应用程序应该生成发票并将其下载到他的计算机的下载文件夹中,如果可能的话,自动读取。这里是我使用的代码,但它不起作用:
<?
php header('Pragma: public');
header('Expires: 0');
header('Content-Type: application/vnd.openxmlformats- officedocument.spreadsheetml.sheet');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Content-Type: application/force-download');
header('Content-Type: application/octet-stream');
header('Content-Type: application/download');
header("Content-Disposition: attachment;filename=attendance.xlsx");
header('Content-Transfer-Encoding: binary');
……..
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save('php://output');
?>
提前谢谢!