PHP导出带样式的Excel
程序员文章站
2022-05-13 16:26:08
...
工作中做导出的时候,需要导出自定义的表格或嫌弃导出的Excel格式太难看了。
需要设置颜色、字号大小、加粗、合并单元格等等。
效果图:
PHP代码:
xmlns="http://www.w3.org/TR/REC-html40">
Thanks ~
来源:http://mp.weixin.qq.com/s?__biz=MjM5NDM4MDIwNw==&mid=2448834670&idx=1&sn=1cccfd60a7227972958d75f3d775c669#rd
更多【干货分享】,请关注我的个人订阅号。
需要设置颜色、字号大小、加粗、合并单元格等等。
效果图:
PHP代码:
/**
* 导出文件
* @return string
*/
public function export()
{
$file_name = "成绩单-".date("Y-m-d H:i:s",time());
$file_suffix = "xls";
header("Content-Type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$file_name.$file_suffix");
//根据业务,自己进行模板赋值。
$this->display();
}
HTML代码:
xmlns:x="urn:schemas-microsoft-com:office:excel"xmlns="http://www.w3.org/TR/REC-html40">
成绩单 |
||||
编号 | 姓名 | 语文 | 数学 | 英语 |
1 | Jone | 90 | 85 | 100 |
2 | Tom | 99 | 85 | 80 |
Thanks ~
来源:http://mp.weixin.qq.com/s?__biz=MjM5NDM4MDIwNw==&mid=2448834670&idx=1&sn=1cccfd60a7227972958d75f3d775c669#rd
更多【干货分享】,请关注我的个人订阅号。