通过table标签,PHP输出EXCEL的实现方法
2015-01-24信息快讯网
以下是利用table标签,对PHP输出EXCEL的实现代码进行了介绍,需要的朋友可以过来参考下
关键代码:<?php header("Content-type:application/vnd.ms-excel"); header("Conten-Disposition:filename=hp.xlsx"); ?>
第一句是用来声明文件内容的格式;第二局是用来修改文件名的。如果没有第二个语句的话,生成的文件将是没有后缀名的。
实现代码:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php header("Content-type:application/vnd.ms-excel"); header("Conten-Disposition:filename=hp.xlsx"); ?> <table width="200" border="1"> <tr> <td colspan="3" align="center">i love you</td> </tr> <tr> <td>编号</td> <td>姓名</td> <td>年龄</td> </tr> <tr> <td>1</td> <td>test</td> <td>20</td> </tr> <tr> <td>2</td> <td>test2</td> <td>22</td> </tr> </table>
当然,我们很自然的想到了,是否可以把数据库的内容也通过这种方式输出到表格呢?
答案是可以的。
实现代码:
<meta http-equiv="Content-Type" content="text/html; charset=gbk" /> <?php header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=qianshou.xls"); mysql_connect("localhost","root",""); mysql_select_db("test"); mysql_query("SET NAMES GBK"); $query="select * from city "; $r=mysql_query($query); ?> <table width="200" border="1"> <tr> <td colspan="3" align="center">城市列表</td> </tr> <tr> <td align="center">id</td> <td align="center">p_id</td> <td align="center">name</td> </tr> <?php while($row=mysql_fetch_assoc($r)){ ?> <tr> <td><?php echo $row[id] ?></td> <td><?php echo $row[p_id] ?></td> <td><?php echo $row[c_name]?></td> </tr> <?php } ?> </table>
php使用imagick模块实现图片缩放、裁剪、压缩示例
php实现的漂亮分页方法
php生成静态页面的简单示例
php文件服务实现虚拟挂载其他目录示例
php实现12306余票查询、价格查询示例
用PHP和Shell写Hadoop的MapReduce程序
PHP检测移动设备类mobile detection使用实例
PHP图片等比缩放类SimpleImage使用方法和使用实例分享
PHP读取大文件的类SplFileObject使用介绍
C#使用PHP服务端的Web Service通信实例
PHP包含文件函数include、include_once、require、require_once区别总结
php获取域名的google收录示例
PHP fopen()和 file_get_contents()应用与差异介绍
PHP调用JAVA的WebService简单实例
php的webservice的wsdl的XML无法显示问题的解决方法
PHP5中GD库生成图形验证码(有汉字)
Ajax+PHP快速上手及简单应用说明
table标签的结构与合并单元格的实现方法
PHP与javascript实现变量交互的示例代码
php curl基本操作详解
如何使用FireFox插件FirePHP调试PHP
PHP时间格式控制符对照表分享
请离开include_once和require_once
php的$_FILES的临时储存文件与回收机制实测过程
解析PHP中$_FILES的使用以及注意事项
php解析html类库simple_html_dom(详细介绍)
解决php使用异步调用获取数据时出现(错误c00ce56e导致此项操作无法完成)
解析array splice的移除数组中指定键的值,返回一个新的数组
浅析php插件 Simple HTML DOM 用DOM方式处理HTML
领悟php接口中interface存在的意义
比较strtr, str_replace和preg_replace三个函数的效率