浏览器发送的官方 eol 值是多少(例如在文本区域中)
在 PHP 中,“\n”充当您所在操作系统的终止符,因此这是不可靠的。
另外,我知道 PHP 有 EOL 常量,这并不是我真正要问的,我想知道我可以从浏览器可靠地检查什么 EOL 值。
In PHP "\n" acts as the eol for the OS you're on so that's unreliable.
Also, I understand that PHP has constants for EOL, that's not really what I'm asking, I want to know what EOL value I can reliably check for from browsers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该查看 HTML 规范:http://www.w3。 org/TR/html401/struct/text.html
但简而言之,我相信这会回答您的问题。
换行符定义为回车
(
、换行)
(
或回车/换行一对。所有换行符均构成空白。)
You should take a look at the HTML spec: http://www.w3.org/TR/html401/struct/text.html
But in a nutshell I believe this will answer your question.
A line break is defined to be a carriage return
( )
, a line feed( )
, or a carriage return/line feed pair. All line breaks constitute white space.