我如何在php中编写新行\ r \ n?

时间:2012-09-11 22:30:04

标签: php csv

  

可能重复:
  PHP - how to create a newline character?

我正在尝试创建一个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 个答案:

答案 0 :(得分:12)

您需要double quotes

"\r\n"