我想怎樣才能在csv文件的頂部新增一個新行becase在我的csv文件輸出中填充了數據庫中的數據,我想要發生的是我想爲每個類型添加相應的列名數據。PHP:如何使用fputcsv在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數據看起來像
什麼問題?在foreach循環之前寫下列名稱的行。 – Barmar
這是我的問題我不知道如何? :( – MekeniKine