Rumah  >  Artikel  >  pembangunan bahagian belakang  >  php生成xls文件的小例子

php生成xls文件的小例子

WBOY
WBOYasal
2016-07-25 08:56:151106semak imbas
  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"].'
复制代码


Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn