通过PHP将MYSQL导出到EXCEL/CSV

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过PHP将MYSQL导出到EXCEL/CSV相关的知识,希望对你有一定的参考价值。

Modify includes to connect and select to provide correct result set
  1. <?php
  2. include 'config.php';
  3. include 'opendb.php';
  4.  
  5. $select = "SELECT * from table_name";
  6.  
  7. $export = mysql_query ( $select ) or die ( "Sql error : " . mysql_error( ) );
  8.  
  9. $fields = mysql_num_fields ( $export );
  10.  
  11. for ( $i = 0; $i < $fields; $i++ )
  12. {
  13. $header .= mysql_field_name( $export , $i ) . " ";
  14. }
  15.  
  16. while( $row = mysql_fetch_row( $export ) )
  17. {
  18. $line = '';
  19. foreach( $row as $value )
  20. {
  21. if ( ( !isset( $value ) ) || ( $value == "" ) )
  22. {
  23. $value = " ";
  24. }
  25. else
  26. {
  27. $value = str_replace( '"' , '""' , $value );
  28. $value = '"' . $value . '"' . " ";
  29. }
  30. $line .= $value;
  31. }
  32. $data .= trim( $line ) . " ";
  33. }
  34. $data = str_replace( " " , "" , $data );
  35.  
  36. if ( $data == "" )
  37. {
  38. $data = " (0) Records Found! ";
  39. }
  40.  
  41. header("Content-type: application/octet-stream");
  42. header("Content-Disposition: attachment; filename=your_file_name.xls");
  43. header("Pragma: no-cache");
  44. header("Expires: 0");
  45. print "$header $data";
  46.  
  47. ?>

以上是关于通过PHP将MYSQL导出到EXCEL/CSV的主要内容,如果未能解决你的问题,请参考以下文章

是否可以通过 PHP 代码将 excel csv 文件直接打开到 microsoft excel 或其他 excel 支持的应用程序中

PostgreSQL:将结果数据从 SQL 查询导出到 Excel/CSV

#yyds干货盘点#Hyperf结合PhpOffice/PhpSpreadsheet实现Excel&CSV文件导出导入

将wpf datagrid导出为自定义Excel CSV文件

PHP导出excel CSV(前后分离)

大量数据导出excel(csv)的实现