php生成word最简单的方式 - 逝去的青春

php生成word最简单的方式

作者:jao 发布于:2012-12-16 0:26 分类:PHP教程

php实现将html代码生成word最简单的方式:将以下代码复制到新建的php页面中,直接访问测试。
  1. <?php
  2. header("Content-Type: application/msword"); header("Content-Disposition: attachment; filename=\"test.doc\"");
  3. echo '<table bgcolor="red" style="font-size:12px;line-height:22px;color:white;">
  4.   <tbody>
  5.     <tr>
  6.       <th>header头部输出word文件最简单方法</th>
  7.     </tr>
  8.     <tr>
  9.       <td s="1">这里是测试内容</td>
  10.     </tr>
  11.   </tbody>
  12. </table>';
  13. ?>

标签: php教程 PHP word

et_highlighter
Copyright © 2012-2013 逝去的青春 蜀ICP备13029051号-1 手机版 安全联盟 Theme by Admin73 sitemap