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

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php使用指定编码导出mysql数据到csv文件的方法脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

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

<PRe class="brush:PHp;">

/*

  • establish database connection
    */

$conn = MySQL_connect('localhost','login','pass') or die(mySQL_error());
mysql_select_db('database_name',$conn) or die(mysql_error($conn));
mysql_query("SET names CP1252");
/*

  • execute sql query
    /
    $query = sprintf('SELECT field1,field2 From table_name');
    $result = mysql_query($query,$conn) or die(mysql_error($conn));
    /
  • send response headers to the browser
  • following headers instruct the browser to treat the data as a csv file called export.csv
    /
    header('Content-tyPE: text/csv; charset=cp1252');
    header('Content-DisposITion: attachment;filename=output.csv');
    /
  • output header row (if atleast one row exists)
    */

$row = mysql_fetch_assoc($result);
if ($row) {
echocsv(array_keys($row));
}

/*

  • output data rows (if atleast one row exists)
    */
    while ($row) {
    echocsv($row);
    $row = mysql_fetch_assoc($result);
    }

/*

  • echo the input array as csv data maintaining consistency with most CSV implementations
    • uses double-quotes as enclosure when necessary
    • uses double double-quotes to escape double-quotes
    • uses CRLF as a line separator
      */

function echocsv($fields)
{
$separator = '';
foreach ($fields as $field) {
if (preg_match('/\r|\n|,|"/',$field)) {
$field = '"' . str_replace('"','""',$field) . '"';
}
echo $separator . $field;
$separator = ',';
}
echo "\r\n";
}
?>

脚本宝典总结

以上是脚本宝典为你收集整理的php使用指定编码导出mysql数据到csv文件的方法全部内容,希望文章能够帮你解决php使用指定编码导出mysql数据到csv文件的方法所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:php