php PHP_EOL使用

PHP_EOLphp

换行符
unix系列用 \n
windows系列用 \r\n
mac用 \r
PHP中能够用PHP_EOL来替代,以提升代码的源代码级可移植性
如:
<?php
echo PHP_EOL;
//windows平台至关于    echo “\r\n”;
//unix\linux平台至关于    echo “\n”;
//mac平台至关于    echo “\r”;

?>
相似经常使用的还有
DIRECTORY_SEPARATOR
能够用函数get_defined_constants()来获取全部PHP常量
linux

相关文章
相关标签/搜索