這篇文章主要介紹了 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); }