What are \r and \n meaning in PHP?

后端 未结 7 2063
难免孤独
难免孤独 2020-12-10 03:20

what are these called \\r \\n and is there a tutorial that explains them?

相关标签:
7条回答
  • 2020-12-10 04:05

    \r is a Carriage Return \n is a Line Feed (or new line).

    On Windows systems these together make a newline (i.e. every time you press the enter button your fix will get a \r\n).

    In PHP if you open a Windows style text file you will get \r\n at the end of paragraphs / lines were you've hit enter. If it was a Unix style text file you'd only get a \n.

    0 讨论(0)
提交回复
热议问题