欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php导出excel文件 并强制下载

程序员文章站 2022-05-16 19:10:16
...
php导出excel文件 并强制下载
<?php
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename=租赁成交记录导出-'.date('y-m-d').'.xls');
echo '<table>
  <tr>
    <td>asd</td>
    <td>123</td>
  </tr>
  <tr>
    <td>qwe</td>
    <td>456</td>
  </tr>
</table>
';