2012-09-11 38 views
-2

可能重複:
PHP - how to create a newline character?我如何在php中寫入新行 r n?

我試圖創建一個CSV文件。 但我得到的只有一行。 我以爲

echo '\r\n' . $lineStr; 

會創建一個新行。

我加入了以下標題:

header("Content-Type: application/vnd.ms-excel; charset=utf-8"); 
header("Content-Disposition: attachment; filename=myFile.xls"); 
header("Expires: 0"); 
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
header("Cache-Control: private",false); 
+1

的可能重複[?PHP - 如何創建一個換行符(http://stackoverflow.com/questions/4238433/php-how-to-create-a-newline-character)另請參見[在單引號中打印PHP中的換行符](http://stackoverflow.com/questions/2531969/print-newline-in-php單引號) –

回答

10

您需要double quotes

"\r\n" 
+0

是的。這很明顯。在此花費nnn分鐘。 感謝您的快速回答。 – DevNull

相關問題