Home  >  Article  >  Backend Development  >  PHP中换行PHP_EOL常量的使用

PHP中换行PHP_EOL常量的使用

WBOY
WBOYOriginal
2016-06-20 13:03:181364browse

不同的操作系统中,换行符是不同的。

Windows下的换行符:\r\n

Linux下的换行符:\n

Mac下的换行符:\r

所以考虑到代码的扩平台性,对换行符的处理,似乎变得麻烦起来。幸运的是,PHP已经帮我们解决了这个繁琐的事情:)。

PHP定义了一个常量:PHP_EOL,它在不同的操作系统中分别对应不同的字符(即上面列出的对应字符)。

因此,下次我们在需要用到换行符,或者对换行符做处理的时候,使用PHP_EOL吧!

例子:

<?php
   echo PHP_EOL;
   //windows平台相当于    echo "\r\n";
   //unix\linux平台相当于    echo "\n";
   //mac平台相当于    echo "\r";
?>

 


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn