如果我在服务器上保存了CSV,如何使用PHP编写给定的行,在其底部说142,fred,elephants

最佳答案

打开CSV文件以进行附加( fopen ):

$handle = fopen("test.csv", "a");
然后添加您的行( fputcsv ):
fputcsv($handle, $line); # $line is an array of strings (array|string[])
然后关闭句柄( fclose ):
fclose($handle);
我希望这是有帮助的。

关于php - 在CSV文件中添加新行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11399197/

10-13 02:51