csvファイルの出力にデータベースからのデータが入力されているため、csvファイルの先頭に新しい行を1つ追加する方法が必要です。データのすべてのタイプに対応する列名を追加したいのです。
これが今の私のコードです:
<?php
include 'database.php';
$db = new database();
$data = $db->exportdatabase();
$file = fopen('php://output', 'w');
foreach ($data as $items)
{
fputcsv($file, $items, ',');
}
header('Content-Description: File Transfer');
header("Content-Type: application/csv") ;
header("Content-Disposition: attachment; filename=data.csv");
header("Expires: 0");
fclose($file);
exit;
?>
これが私のcsvデータです