PHP経由でCSVにエクスポートする 質問する

PHP経由でCSVにエクスポートする 質問する

データベースがあるとします。PHP 経由でデータベースの内容を CSV ファイル (およびテキスト ファイル (可能であれば)) にエクスポートする方法はありますか?

ベストアンサー1

私は個人的に、この関数を使用して任意の配列から 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();
}

次に、次のような方法でユーザーにそのファイルをダウンロードさせることができます:

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");
}

使用例:

download_send_headers("data_export_" . date("Y-m-d") . ".csv");
echo array2csv($array);
die();

おすすめ記事