[Solved] Replace comma with newline and write to text file [closed]


Use something like

file_put_contents("file.txt", str_replace(",", "\r\n", $string));

1

solved Replace comma with newline and write to text file [closed]