if
(
$m_exportType
==
"excel"
){
$objWriter
= PHPExcel_IOFactory::createWriter(
$objPHPExcel
,
'Excel5'
);
header(
"Pragma: public"
);
header(
"Expires: 0"
);
header(
"Cache-Control:must-revalidate, post-check=0, pre-check=0"
);
header(
"Content-Type:application/force-download"
);
header(
"Content-Type: application/vnd.ms-excel;"
);
header(
"Content-Type:application/octet-stream"
);
header(
"Content-Type:application/download"
);
header(
"Content-Disposition:attachment;filename="
.
$filename
);
header(
"Content-Transfer-Encoding:binary"
);
}
if
(
$m_exportType
==
"pdf"
){
$objWriter
= PHPExcel_IOFactory::createWriter(
$objPHPExcel
,
'PDF'
);
$objWriter
->setSheetIndex(0);
header(
"Pragma: public"
);
header(
"Expires: 0"
);
header(
"Cache-Control:must-revalidate, post-check=0, pre-check=0"
);
header(
"Content-Type:application/force-download"
);
header(
"Content-Type: application/pdf"
);
header(
"Content-Type:application/octet-stream"
);
header(
"Content-Type:application/download"
);
header(
"Content-Disposition:attachment;filename="
.
$m_strOutputPdfFileName
);
header(
"Content-Transfer-Encoding:binary"
);
}