PHP在不同的系统中,换行是不同的
Linux:
Windows:
mac:
所以去除回车换行的方法:
1.使用php定义好的变量(比较好的方法,推荐)
$str= str_replace(PHP_EOL, '', $str);
2.使用str_replace 来替换换行
$str= str_replace(array(" ", " ", " "), "", $str);