`
jickcai
  • 浏览: 239205 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

php 输出excel

    博客分类:
  • php
 
阅读更多

 /**

     * 下载模板

     */ 

    public function download_template()

    {

        $file = "template.xls";

//设置excel 头

        header("Content-type:application nd.ms-excel");

        header('Content-Disposition: attachment; filename="导入模板.xls"');

        $content = file_get_contents($file);

        echo $content;

        exit();

    }

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics