平常开发中,常见的需求就是导出数据为Excel,CSV格式的表格。所以,在此记录一下导出CSV数据的小方法
$fileName = 'demo.csv'; $data = [['id'=>1,'name'=>'李','age'=>23],['id'=>2,'name'=>'行','age'=>13] ];exportCsv($fileName,$data,false);function exportCsv($fileName,$data,$is_download=true) {set_time_limit(0);ini_set('memory_limit','512M');if(!$is_download){$output = fopen('php://output','w');}else{$output = fopen($fileName, 'w');}header("Content-Type: application/csv;charset=UTF-8");header("Content-Disposition: attachment; filename=$fileName");if(!$data || !is_array($data)) return false;foreach($data as $v){fputcsv($output, array_values($v));} fclose($output); }