php幾行代碼實現CSV格式文件輸出
阿新 • • 發佈:2017-07-01
word del filename rds pub words -c key ext function export_csv($filename,$str){
//適用於不需要設置格式簡單將數據導出的程序,多多指教......
$str .= ‘pro_code‘.‘,‘.‘words‘.‘\n‘;//首先寫入表格標題欄
foreach($is_error as $key => $value){//循環寫入數據
$str .= $value[‘pro_code‘].",".$value[‘words‘]."\n";
}
$str = iconv(‘utf-8‘,‘gb2312‘,$str);//防止中文亂碼
$filename = "./output.csv";//文件路徑及名字
export_csv($filename,$str); //導出
//自定義輸出函數
header("Content-type:text/csv");
header("Content-Disposition:attachment;filename=".$filename);
header(‘Cache-Control:must-revalidate,post-check=0,pre-check=0‘);
header(‘Expires:0‘);
header(‘Pragma:public‘);
echo $str;
}
php幾行代碼實現CSV格式文件輸出