欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php快速生成excel文件技巧

程序员文章站 2022-06-08 22:52:44
...
把以下代码放到php文件顶部,当前html页面大部分效果就会以excel的格式被保存下来,所见即所存,当然是大部分效果。

以下是PHP源码:
header("Pragma: public");
header("Pragma: no-cache");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=mydowns.xls");