读取CSV文件:
$file = fopen('data.csv', 'r');
while (($data = fgetcsv($file)) !== false) {
print_r($data);
}
fclose($file);
写入CSV文件:
$data = [
['John', 'Doe', 'john.doe@example.com'],
['Jane', 'Smith', 'jane.smith@example.com'],
];
$file = fopen('data.csv', 'w');
foreach ($data as $row) {
fputcsv($file, $row);
}
fclose($file);
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读:php fputcsv 数据安全咋保证