我想如何在 csv 文件的顶部添加一个新行,因为在我的 csv 文件输出中填充了来自数据库的数据,我想要发生的是我想为每种类型的数据添加相应的列名。
这是我现在的代码:
<?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 数据看起来像