本文介绍了在CSV文件中添加新行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我在服务器上保存了CSV,我如何使用PHP编写给定的行,例如 142,fred,elephants
到它的底部? / p>
If I have a CSV saved on a server, how can I use PHP to write a given line, say 142,fred,elephants
to the bottom of it?
推荐答案
打开要附加的CSV文件():
Open the CSV file for appending (fopen
):
$handle = fopen("test.csv", "a");
然后添加您的行():
Then add your line (fputcsv
):
fputcsv($handle, $line); # $line is an array of string values here
然后关闭句柄( ):
Then close the handle (fclose
):
fclose($handle);
我希望这对您有帮助。
这篇关于在CSV文件中添加新行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!