分享一个高性能导出大数据量的 Excel 方法(性能远超 phpexcel 扩展) [ 2.0 版本 ]
现在贴出部分代码,完整使用代码请参考: https://www.waytomilky.com/index.php/archives/210/
//XLS导出
/**
$name string 文件名称
$header array 列标题
$dataResult 数组
**/
public function ExcelPull($name, $header, $dataResult)
{
//这一行没啥用,根据具体情况优化下
$headTitle = "xx详情";
$headtitle= "<tr style='height:50px;border-style:none;><td border=\"0\" style='height:90px;width:470px;font-size:22px;' colspan='11' >{$headTitle}</th></tr>";
$titlename = "<tr>";
foreach ($header as $v) {
$titlename .= "<td>$v</td>";
}
$titlename .= "</tr>";
$fileName = date("Y-m-d") . "-" . $name . ".xls";
$this->excelData($dataResult, $titlename, $headtitle, $fileName);
}
public function excelData($data, $titlename, $title, $filename)
{
$str = "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\"\r\nxmlns:x=\"urn:schemas-microsoft-com:office:excel\"\r\nxmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>";
$str .="<table border=1>" . $titlename;
$str .= '';
foreach ($data as $key => $rt) {
$str .= "<tr>";
foreach ($rt as $v) {
$str .= "<td >{$v}</td>";
}
$str .= "</tr>\n";
}
$str .= "</table></body></html>";
$str .= "<span>creator:".yii::$app->user->identity->user_loginname."</span>";
header("Content-Type: application/vnd.ms-excel; name='excel'");
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=" . $filename);
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Pragma: no-cache");
header("Expires: 0");
exit($str);
}
wenhainan
注册时间:2017-09-09
最后登录:2021-06-23
在线时长:10小时41分
最后登录:2021-06-23
在线时长:10小时41分
- 粉丝0
- 金钱280
- 威望10
- 积分480
热门源码
- 基于 Yii 2 + Bootstrap 3 搭建一套后台管理系统 CMF
- 整合完 yii2-rbac+yii2-admin+adminlte 等库的基础开发后台源码
- 适合初学者学习的一款通用的管理后台
- yii-goaop - 将 goaop 集成到 Yii,在 Yii 中优雅的面向切面编程
- yii-log-target - 监控系统异常且多渠道发送异常信息通知
- 店滴云1.3.0
- 面向对象的一小步:添加 ActiveRecord 的 Scope 功能
- Yii2 开源商城 FecShop
- 基于 Yii2 开发的多店铺商城系统,免费开源 + 适合二开
- leadshop - 基于 Yii2 开发的一款免费开源且支持商业使用的商城管理系统
共 3 条评论
这个主要适合生成单文件单sheet的场景下,不过这种场景有更多的生成方式,比如table直接通过js导出excel,连后端请求都没有了。如果单文件多sheet的情况,目前来看还是得用效率确实差到极点的phpexcel
是的,看场景
链接修改了下,请参考这里:https://www.waytomilky.com/technology/59.html
链接更新:https://www.waytomilky.com/archives/210.html