暂停在所有平台上运行
可能的重复:
PHP Echo 换行符
有一个用于 Windows 的 \n
和一个PHP_EOL
for UNIX(我认为),但是是否有一个适用于网络应用程序中每个平台的中断?或者 PHP_EOL
-snippet 是我正在寻找的吗?
Possible Duplicate:
PHP Echo Line Breaks
There is a \n
for Windows and a PHP_EOL
for UNIX (I think), but is there a break which works on every platform in a webapp? Or is the PHP_EOL
-snippet the one I'm looking for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,
PHP_EOL
就是您正在寻找的yes,
PHP_EOL
is what you are looking for好吧,平台在这里几乎没有什么可做的。
差异仅适用于在某些外部程序中浏览的文本文件。
而对于输出的规则可能与这些平台相关的规则不同。
比如说,对于 MIME 和 HTML,无论平台如何,“\r\n”都是一个标准
well, platforms has very little to do here.
The difference is only applicable to the text files, browsed in some outside program.
While for the output the rules may be different from these platform-related ones.
Say, for MIME and HTML "\r\n" is a standard despite of the platform
PHP_EOL
与平台相关,并且会根据 PHP 运行的操作系统而有所不同。PHP_EOL
is platform-dependent, and will vary based on what OS PHP is running on.