1、简介
如何利用最简单粗糙暴力的方法将数据写入Excel文件中呢?
因为ms word和excel的文档都支持html文本格式,因此我们可以基于这个原理采用html文本格式进行数据的输出。
在html中,我们只需要将数据照着所想要的顺序放进相应的html表格中即可。
我们采用PHP进行数据获取整理以及构造相应的html文本,最后通过字节流输出下载到用户本地。
2、代码
直接上代码,这是一个很简单的程序,里面都带有注释了。
ExportExcel.class.php文件
<"<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>"; #以下构建一个html类型格式的表格 $str .= $title; $str .="<table border=1><head>".$titlename."</head>"; foreach ($data as $key=> $rt ) { $str .= "<tr>"; foreach ( $rt as $k => $v ) { $str .= "<td>{$v}</td>"; } $str .= "</tr>\n"; } $str .= "</table></body></html>"; 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 ); } } "htmlcode"><"这个是Excel表格标题"; $title = "我的Excel表"; #文件命名 $headtitle= "<tr><th colspan='3' >{$excelHead}</th></tr>"; $titlename = "<tr> <th style='width:70px;'>表格1</th> <th style='width:70px;'>表格2</th> <th style='width:70px;'>表格3</th> </tr>"; $filename = $title.".xls"; $obj->excelData($data,$titlename,$headtitle,$filename); "color: #ff0000">3、测试点击访问:
下载该Excel文件
成功后查看该文件:
进入后Excel提示说该文件格式与后缀名不一致,这也间接说明了我们所导出来的Excel文件仅仅只是个外表是Excel(实质是html文件),格式上并不是Excel文件。
点击是进入查看里面的内容,上看去挺像Excel的嘛,哈哈。就酱紫
更改后缀名为html进入查看:
你瞧,实质就是html文件嘛,只是Excel支持该格式而已。
以上这篇PHP将数据导出Excel表中的实例(投机型)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
标签:
php将数据导出excel表
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“PHP将数据导出Excel表中的实例(投机型)”评论...