Not sure what could be the problem.
I'm dumping data from an array $theArray
into theFile.txt
, each array item on a separate line.
$file = fopen("theFile.txt", "w");
foreach ($theArray as $arrayItem){
fwrite($file, $arrayItem . '\n');
}
fclose($file);
Problem is when I open theFile.txt
, I see the \n
being outputted literally.
Also if I try to programmatically read the file line by line (just in case lines are there), it shows them as 1 line meaning \n
are really not having their desired effect.