gpt4 book ai didi

php - 向 CSV 文件添加新行

转载 作者:IT王子 更新时间:2023-10-29 00:55:41 25 4
gpt4 key购买 nike

如果我在服务器上保存了一个 CSV,我如何使用 PHP 编写给定的行,比如 142,fred,elephants 到它的底部?

最佳答案

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

$handle = fopen("test.csv", "a");

然后添加您的行(fputcsv­Docs):

fputcsv($handle, $line); # $line is an array of strings (array|string[])

然后关闭句柄(fclose­Docs):

fclose($handle);

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com