国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

把生成的excel文件直接提供為下載頁效果

Original 2016-11-18 11:01:48 321
abstract:把php中的excel顯示下載頁下載到本地硬盤需要設(shè)置頭信息:代碼:$objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); header("Pragma: public"); header("Expires: 

把php中的excel顯示下載頁下載到本地硬盤需要設(shè)置頭信息:

wKioL1gtNbGzud-QAAEE-_1MOB8811.jpg-wh_651x-s_468450385.jpg

代碼:

$objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
header("Pragma: public");
header("Expires: 0");
header("Cache-Control:must-revalidate, post-check=0, pre-check=0");
//設(shè)置http協(xié)議,下載支持
header("Content-Type:application/force-download");
//設(shè)置下載的內(nèi)容是excel
header("Content-Type:application/vnd.ms-execl");
//把下載的內(nèi)容設(shè)置為8機制流內(nèi)容
header("Content-Type:application/octet-stream");
//設(shè)置http協(xié)議,下載支持
header("Content-Type:application/download");
//下載excel名字的定義
header('Content-Disposition:attachment;filename="商品信息.xlsx"');
//內(nèi)容設(shè)置為二進制形式傳輸
header("Content-Transfer-Encoding:binary");
//把excel文件直接提供為下載形式
$objWriter->save('php://output');


Release Notes

Popular Entries