博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 导出excel
阅读量:5999 次
发布时间:2019-06-20

本文共 1119 字,大约阅读时间需要 3 分钟。

hot3.png

google 的xml excel

function export_excel($filename,$title,$data){ ob_end_clean(); ini_set('zlib.output_compression','Off');

header('Pragma: public'); header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");                   header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT'); header('Cache-Control: no-store, no-cache, must-revalidate');    header('Cache-Control: pre-check=0, post-check=0, max-age=0');    header ("Pragma: no-cache"); header("Expires: 0"); header('Content-Transfer-Encoding: none'); header('Content-Type: application/vnd.ms-excel;charset=utf-8');                 header("Content-type: application/x-msexcel;charset=utf-8"); header("Content-disposition: attachment; filename="  . iconv('utf-8', "gb2312", $filename) . ".xls");$s = '';if (is_array($title)){	foreach ($title as $key => $value){		$s .=  $value."\t";	}}$s .=  "\n";if (is_array($data)){	foreach ($data as $key => $value){		foreach ($value as $_key => $_value){			$s .=  $_value."\t";		}		$s .=  "\n";	}}$s = mb_convert_encoding($s, 'gb2312');//$s = iconv('utf-8', "gb2312", $s);exit($s);

}

转载于:https://my.oschina.net/u/137226/blog/158930

你可能感兴趣的文章
会计基础模拟练习一(3)
查看>>
extjs4.0以上添加多行工具栏的方法
查看>>
监控的几个网站
查看>>
SQL2008附加数据库提示错误:5120
查看>>
emacs之配置自动安装脚本
查看>>
wamp多站点多端口配置
查看>>
c# MongoDB插入和批量插入,插入原理
查看>>
解释#ifdef ALLOC_PRAGMA代码段的原理
查看>>
C#中如何查找Dictionary中的重复值
查看>>
C++中int型与string型互相转换 - 大气象 - 博客园
查看>>
jquery.mmenu
查看>>
memcache stats命令详解
查看>>
[开发笔记]-DataGridView控件中自定义控件的使用
查看>>
解决sourcesafe admin用户自动登录并且不用密码的问题
查看>>
HTML5 LocalStorage 本地存储
查看>>
XCode 5资源文件不自动更新问题
查看>>
typedef与define
查看>>
firebug,chrome调试工具的使用
查看>>
ILOG JRules 和 WebSphere Process Server 集成概述
查看>>
构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(28)-系统小结
查看>>