php匯出有前置0的csv執行個體分享

來源:互聯網
上載者:User
php如何匯出有前置0的csv檔案?下面小編就為大家帶來一篇php匯出csv檔案,可匯出前置0執行個體代碼。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。希望對大家有所協助。

執行個體一:可匯出前置0

//匯出csv格式檔案 $data資料 $title_arr標題 $file_name檔案名稱function exportCsv($data,$title_arr,$file_name=''){  ini_set("max_execution_time", "3600");  $csv_data = '';  /** 標題 */  $nums = count($title_arr);  for ($i = 0; $i < $nums - 1; ++$i) {    $csv_data .= '"' . $title_arr[$i] . '",';  }  if ($nums > 0) {    $csv_data .= '"' . $title_arr[$nums - 1] . "\"\r\n";  }  foreach ($data as $k => $row) {    foreach ($row as $key => $r){      $row[$key] = str_replace("\"", "\"\"", $r);      $csv_data .= "\"\t" . $row[$key] . '",';    }    $csv_data .= '"' . $row[$nums - 1] . "\"\r\n";    unset($data[$k]);  }  $csv_data = mb_convert_encoding($csv_data, "cp936", "UTF-8");  $file_name = empty($file_name) ? date('Y-m-d-H-i-s', time()) : $file_name;  if (strpos($_SERVER['HTTP_USER_AGENT'], "MSIE")) { // 解決IE瀏覽器輸出中文名亂碼的bug    $file_name = urlencode($file_name);    $file_name = str_replace('+', '%20', $file_name);  }  $file_name = $file_name . '.csv';  header('Content-Type: application/download');  header("Content-type:text/csv;");  header("Content-Disposition:attachment;filename=" . $file_name);  header('Cache-Control:must-revalidate,post-check=0,pre-check=0');  header('Expires:0');  header('Pragma:public');  echo $csv_data;  exit();}

注釋:不可以直接輸出超連結!

相關推薦:

php csv操作類代碼

php csv to array(csv 轉數組)方法與代碼

PHP CSV匯入資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.