What are \r and \n meaning in PHP?

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

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

7条回答
  •  爱一瞬间的悲伤
    2020-12-10 03:50

    Not an answer to your question, but relevant nonetheless: I'd recommend using the PHP_EOL constant whenever you want to insert a new line. The PHP_EOL constant contains the correct new line character(s) for the platform on which the script is being run (\n on Unix, \r\n on Windows).

提交回复
热议问题