Answers for "php append to csv"

PHP
0

php append to csv

$handle = fopen("test.csv", "a");
fputcsv($handle, $line); # $line is an array of strings (array|string[])
fclose($handle);
Posted by: Guest on October-20-2020

Browse Popular Code Answers by Language