将MySQL查询结果导出到CSV
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将MySQL查询结果导出到CSV相关的知识,希望对你有一定的参考价值。
// Export to CSV if($_GET['action'] == 'export') { $out = ''; // Put the name of all fields for ($i = 0; $i < $columns; $i++) { $out .= '"'.$l.'",'; } $out .=" "; // Add all values in the table for ($i = 0; $i < $columns; $i++) { $out .='"'.$l["$i"].'",'; } $out .=" "; } // Output to browser with appropriate mime type, you choose ;) //header("Content-type: text/csv"); //header("Content-type: application/csv"); echo $out; exit; }
以上是关于将MySQL查询结果导出到CSV的主要内容,如果未能解决你的问题,请参考以下文章