PHP 從資料庫匯出到.csv檔案的方法詳解

來源:互聯網
上載者:User
這篇文章主要介紹了 PHP 實現從資料庫匯出到.csv檔案方法的相關資料,需要的朋友可以參考下

PHP 實現從資料庫匯出到.csv檔案方法

實現代碼:

public function export(){ // 從資料庫中擷取資料,為了節省記憶體,不要把資料一次性讀到記憶體,從控制代碼中一行一行讀即可 // 輸出Excel檔案頭,可把user.csv換成你要的檔案名稱 header('Content-Type: application/vnd.ms-excel'); header('Content-Disposition: attachment;filename="order.csv"'); header('Cache-Control: max-age=0'); $where=array(   "paid"=>1,   "pay_type"=>array("NEQ","offline"),   "status"=>array("lt",3), ); $stmt = M("Group_order")->field("order_id,order_name,num,price,total_money,contact_name,phone,zipcode,adress,wx_cheap,balance_pay,payment_money,tuan_type,pay_time,pay_type,third_id,is_mobile_pay,paid,status")->where($where)->order("order_id DESC")->limit(1000)->select();   // 開啟PHP檔案控制代碼,php://output 表示直接輸出到瀏覽器 $fp = fopen('php://output', 'a'); // 輸出Excel列名資訊 $head = array("訂單號","訂單名稱","購買數量","單價","總價","連絡人姓名","連絡人電話","郵編","詳細地址","優惠金額","餘額支付金額","真實支付金額","特賣類型(2為實物)","支付時間","支付類型","第三方支付id","是否是手機支付","是否支付","訂單狀態"); foreach ($head as $i => $v) { // CSV的Excel支援GBK編碼,一定要轉換,否則亂碼   $head[$i] = iconv('utf-8', 'gbk', $v); } // 將資料通過fputcsv寫到檔案控制代碼 fputcsv($fp, $head); // 計數器 $cnt = 0; // 每隔$limit行,重新整理一下輸出buffer,不要太大,也不要太小 $limit = 500; // 逐行取出資料,不浪費記憶體 $count = count($stmt); for($t=0;$t<$count;$t++) { $cnt ++; if ($limit == $cnt) { //重新整理一下輸出buffer,防止由於資料過多造成問題   ob_flush();   flush();   $cnt = 0; } $row = $stmt[$t];foreach ($row as $i => $v) {  if($i=='pay_time'){     $v=date("Y-m-d,H:i:s",$v);  }   $row[$i] = iconv('utf-8', 'gbk', $v); } fputcsv($fp, $row); }   fclose($fp); }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.