PHP中除去換行符php
$str = str_replace(array("\r\n", "\r", "\n"), "", $str);
$str = str_replace(PHP_EOL, '', $str);
換行符windows
unix系列用 \n函數
windows系列用 \r\nspa
mac用 \r.net
PHP中能夠用PHP_EOL來替代,以提升代碼的源代碼級可移植性unix
能夠用函數get_defined_constants()來獲取全部PHP常量code
php常量:http://php.net/manual/zh/reserved.constants.phpblog