@wallstreet; şu örnekten yola çıkabilirsin.
<?php
header("Content-Type: text/plain; charset=UTF-8");
header("Content-Disposition: attachment; filename=rapor.txt");
$content = "Merhaba\nDünya";
$content = str_replace("\r\n", "\n", $content);
$content = str_replace("\r", "\n", $content);
$content = str_replace("\n", "\r\n", $content);
echo $content;