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

php生成xls文件的小例子

程序员文章站 2022-04-01 11:49:42
...
  1. include '../../inc/auth.php';

  2. include '../public/Base.php';
  3. include '../public/BoonList.php';
  4. //以上是pdo连接数据库的代码,大家自行完成。
  5. header('Cache-Control: no-cache, must-revalidate');
  6. header('Content-type: application/vnd.ms-excel');
  7. header('Content-Disposition: filename=leaveMessage.xls');
  8. ?>
  9. if (isset($_GET['trio']) && $_GET['trio']=='trio_message') {
  10. $sql = "select * from trio_message";
  11. $order_list = $db->getAll($sql);
  12. for($i=0;$i echo '

  13. ';
  14. echo'
  15. ';
  16. echo'
  17. ';
  18. echo'
  19. ';
  20. echo'
  21. ';
  22. echo'
  23. ';
  24. echo '
  25. ';
  26. }
  27. }
  28. ?>
  29. 留言ID userid 用户名 留言内容 日期
    '.$order_list[$i]["id"].' '.$order_list[$i]["userid"].' '.$order_list[$i]["user_name"].' '.$order_list[$i]["content"].' '.$order_list[$i]["fdate"].'
复制代码