What will this code output?
<?php file_put_contents('test.csv', '1,2,3,4,5'); $handle = fopen('test.csv', 'c'); fputcsv($handle, ['6', '7', '8']); fclose($handle); echo file_get_contents('test.csv');