我想如何在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数据看起来像
答案 0 :(得分:2)