con este formato :
"5 7
"
"6 8"
lo que necesito es esta forma gracias ppor cualquier aporte
5;7
6;8
$contents = file("data.txt");
$handle = fopen('file.csv'/*some other path/file with write permission*/, 'w');
foreach($contents as $line)
{
fputcsv(($handle), explode("\t",$line));
}
fclose($handle);