PHP 从PHP导出Easy Excel

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 从PHP导出Easy Excel相关的知识,希望对你有一定的参考价值。

<?php
header("Expires: 0");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Content-type: application/vnd.ms-excel;charset:UTF-8");
header("Content-Disposition: attachment; filename=filename.xls"); 
print "\n"; // Add a line, unless excel error..
?>
<table border="1">
<tr>
<th>header 1</th>
<th>header 2</th>
</tr>
<tr>
<td>data 1</td>
<td>data 2 - nordic letters æ, æ, å</td>
</tr>
</table>

以上是关于PHP 从PHP导出Easy Excel的主要内容,如果未能解决你的问题,请参考以下文章

PHP从数据库原生导出Excel文件

从PHP轻松导出Excel

PHP从数据库导出EXCEL文件

PHP怎样将查询出来的数据导出成excel表格?

php 从Gravity Forms导出文件中删除空行(导入到excel时出现问题)

php 导出excel 10万数据