php使用指定编码导出mysql数据到csv文件的方法_PHP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:php输出全球各个时区列表的方法
具体实现方法如下:

这篇文章主要介绍了php使用指定编码导出mysql数据到csv文件的方法,涉及php查询mysql及操作csv文件的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php使用指定编码导出mysql数据到csv文件的方法。分享给大家供大家参考。具体实现方法如下:

  1. <?php 
  2. /* 
  3.  * PHP code to export MySQL data to CSV 
  4.  *  
  5.  * Sends the result of a MySQL query as a CSV file for download 
  6.  * Easy to convert to UTF-8. 
  7.  */ 
  8.   
  9.  /* 
  10.  * establish database connection 
  11.  */ 
  12.   
  13. $conn = mysql_connect('localhost''login''pass'or die(mysql_error()); 
  14. mysql_select_db('database_name'$connor die(mysql_error($conn)); 
  15. mysql_query("SET NAMES CP1252"); 
  16. /*  
  17.  * execute sql query    
  18.  */ 
  19. $query = sprintf('SELECT field1,field2 FROM table_name'); 
  20. $result = mysql_query($query$connor die(mysql_error($conn)); 
  21. /*  
  22.  * send response headers to the browser 
  23.  * following headers instruct the browser to treat the data as a csv file called export.csv 
  24.  */ 
  25. header('Content-Type: text/csv; charset=cp1252'); 
  26. header('Content-Disposition: attachment;filename=output.csv'); 
  27. /*  
  28.  * output header row (if atleast one row exists)  
  29.  */ 
  30.     
  31. $row = mysql_fetch_assoc($result);  
  32. if ($row) { 
  33.   echocsv(array_keys($row)); 
  34.   
  35. /* 
  36.  * output data rows (if atleast one row exists) 
  37.  */ 
  38. while ($row) { 
  39.   echocsv($row); 
  40.   $row = mysql_fetch_assoc($result); 
  41.   
  42. /* 
  43.  * echo the input array as csv data maintaining consistency with most CSV implementations 
  44.  * - uses double-quotes as enclosure when necessary 
  45.  * - uses double double-quotes to escape double-quotes 
  46.  * - uses CRLF as a line separator 
  47.  */ 
  48.   
  49. function echocsv($fields
  50.   $separator = ''
  51.   foreach ($fields as $field) { 
  52.     if (preg_match('/\\r|\\n|,|"/'$field)) { 
  53.  $field = '"' . str_replace('"''""'$field) . '"'
  54.     } 
  55.     echo $separator . $field
  56.     $separator = ','
  57.   } 
  58.   echo "\r\n"
  59. ?> 

分享:php限制ip地址范围的方法
只有在限定范围内的ip地址才能访问 希望本文所述对大家的php程序设计有所帮助。

来源:模板无忧//所属分类:PHP教程/更新时间:2015-04-01
相关PHP教程