>  기사  >  백엔드 개발  >  xls 파일을 생성하는 PHP의 작은 예

xls 파일을 생성하는 PHP의 작은 예

WBOY
WBOY원래의
2016-07-25 08:56:151099검색
  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

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


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.