1. 程式人生 > >php幾行代碼實現CSV格式文件輸出

php幾行代碼實現CSV格式文件輸出

word del filename rds pub words -c key ext

//適用於不需要設置格式簡單將數據導出的程序,多多指教......

$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); //導出

//自定義輸出函數

function 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格式文件輸出