使用PHP 將資料庫資料匯出到CSV
在資料管理領域,可能需要從資料庫中擷取資訊並匯出以方便的格式。如果您的首選格式是 CSV(逗號分隔值),PHP 為該任務提供了強大的解決方案。
產生CSV 內容
從陣列建立CSV 內容,您可以使用下列函數:
function array2csv(array &$array) { if (count($array) == 0) { return null; } ob_start(); $df = fopen("php://output", 'w'); fputcsv($df, array_keys(reset($array))); foreach ($array as $row) { fputcsv($df, $row); } fclose($df); return ob_get_clean(); }
此函數先檢查陣列是否為空陣列是否為空。如果不是,它開始緩衝輸出,打開輸出流的句柄,寫入包含第一個數組元素中的鍵的標題行,然後迭代數組,使用 fputcsv() 將每一行寫入輸出流。最後,它關閉輸出句柄並傳回緩衝的 CSV 內容。
啟動下載
一旦獲得CSV 內容,您就可以讓使用者下載該檔案使用以下函數:
function download_send_headers($filename) { // disable caching $now = gmdate("D, d M Y H:i:s"); header("Expires: Tue, 03 Jul 2001 06:00:00 GMT"); header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate"); header("Last-Modified: {$now} GMT"); // force download header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download"); // disposition / encoding on response body header("Content-Disposition: attachment;filename={$filename}"); header("Content-Transfer-Encoding: binary"); }
在此函數中,快取機制被禁用,並且文件被強制下載通過設定適當的標題。 Content-Disposition 標頭指定檔案名稱並將配置設定為附件,而 Content-Transfer-Encoding 標頭表示二進位傳輸。
使用範例
顯示如何使用這些函數,請考慮以下範例:
download_send_headers("data_export_" . date("Y-m-d") . ".csv"); echo array2csv($array); die();
此範例設定具有指定檔案名稱的下載標頭,輸出CSV 內容,然後終止執行以避免任何可能損壞檔案的額外輸出。
以上是如何使用 PHP 將資料庫資料匯出到 CSV 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!