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

上传人:PIYPING 文档编号:11660468 上传时间:2021-08-28 格式:DOCX 页数:4 大小:12.08KB
返回 下载 相关 举报
php用法指定编码导出mysql数据到csv文件的方法_.docx_第1页
第1页 / 共4页
php用法指定编码导出mysql数据到csv文件的方法_.docx_第2页
第2页 / 共4页
php用法指定编码导出mysql数据到csv文件的方法_.docx_第3页
第3页 / 共4页
php用法指定编码导出mysql数据到csv文件的方法_.docx_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

《php用法指定编码导出mysql数据到csv文件的方法_.docx》由会员分享,可在线阅读,更多相关《php用法指定编码导出mysql数据到csv文件的方法_.docx(4页珍藏版)》请在三一文库上搜索。

1、php用法指定编码导出mysql数据到csv文件的方法_ 本文实例讲解并描述了php用法指定编码导出mysql数据到csv文件的方法。分享给大家供大家参考。具体实现方法如下: ?php /* * PHP code to export MySQL data to CSV * * Sends the result of a MySQL query as a CSV file for download * Easy to convert to UTF-8. */ /* * establish database connection */ $conn = mysql_connect(localhost

2、, 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 he

3、aders 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_ass

4、oc($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 ne

5、cessary * - 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 rn; ? 更多信息请查看IT技术专栏 .

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 科普知识


经营许可证编号:宁ICP备18001539号-1