> 백엔드 개발 > PHP 튜토리얼 > xls 파일을 생성하는 PHP의 작은 예

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

WBOY
풀어 주다: 2016-07-25 08:56:15
원래의
1146명이 탐색했습니다.
  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"].'
复制代码


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿