码迷,mamicode.com
首页 > Web开发 > 详细

PHP导出excel表格

时间:2015-12-19 23:22:04      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:

<?php
header(‘Content-Type: application/force-download‘);
header("Content-type: text/html; charset=utf-8"); 
header(‘Content-Disposition: attachment; filename=租赁成交记录导出-‘.date(‘y-m-d‘).‘.xls‘);
echo<table>
  <tr>
    <td>abc</td>
    <td>123</td>
  </tr>
  <tr>
    <td>qwe</td>
    <td>456</td>
  </tr>
</table>
;
?>

 

PHP导出excel表格

标签:

原文地址:http://www.cnblogs.com/finnlee/p/5059912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!