在Wordpress中将数据导出为Excel

时间:2015-05-04 18:55:43

标签: php wordpress excel

我正在尝试将一些数据导出到我的wordpress页面中的excel,但是当我保存文件时,它会将其打印在我的浏览器上,而不会打开保存它的对话框。

我正在尝试使用此命令保存。

        $objWriter->save('php://output');

提前谢谢。

1 个答案:

答案 0 :(得分:0)

是的,我之前实例化了。

$objWriter = PHPExcel_IOFactory::createWriter($this->excel->workbook,'Excel5');

我使用了几个标题,例如这个标题:

header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$filename.'.xls"');
header('Cache-Control: max-age=0');

这也是:

header("Content-type: text/csv");
header("Content-Disposition: attachment; filename=file.csv");
header("Pragma: no-cache");
header("Expires: 0");