首页 > 开发 > PHP > 正文

php快速生成excel文件技巧

2024-05-04 23:05:33
字体:
来源:转载
供稿:网友

商业源码热门下载www.html.org.cn

把以下代码放到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");

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表