从PHP轻松导出Excel

Posted

tags:

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

This is saved from Gerhard Slettens weblog www.gersh.no. I just want yo keep it on snipplr so it easily can be fetched through textmate.
  1. <?php
  2. header("Expires: 0");
  3. header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
  4. header("Cache-Control: no-store, no-cache, must-revalidate");
  5. header("Cache-Control: post-check=0, pre-check=0", false);
  6. header("Pragma: no-cache");
  7. header("Content-type: application/vnd.ms-excel;charset:UTF-8");
  8. header("Content-Disposition: attachment; filename=filename.xls");
  9. print " "; // Add a line, unless excel error..
  10. ?>
  11. <table border="1">
  12. <tr>
  13. <th>header 1</th>
  14. <th>header 2</th>
  15. </tr>
  16. <tr>
  17. <td>data 1</td>
  18. <td>data 2 - nordic letters æ, æ, å</td>
  19. </tr>
  20. </table>

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

PHP从数据库导出EXCEL文件

php 导出excel 10万数据

急求php导出生成excel的代码

phpExcel 操作示例

PHP 从PHP导出Easy Excel

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