php去除字符串中的空格和换行符的方法:可以通过正则来实现,如【preg_replace('//s*/', '', $str);】。也可以通过PHP_EOL变量来实现,如【str_replace(PHP_EOL, '', $str);】。
具体方法如下:
(推荐教程:php视频教程)
1、使用str_replace 来替换
$str = str_replace(array("\r\n", "\r", "\n"), "", $str);
2、使用正则替换
$str = preg_replace('//s*/', '', $str);
3、使用php定义好的变量 (建议使用)
$str = str_replace(PHP_EOL, '', $str);
当然我们可以把他定义成一个函数,然后一起替换,这样可以重复使用这个代码片段。
function trimall($str){ $qian=array(" "," ","\t","\n","\r"); return str_replace($qian, '', $str); }
相关推荐:php培训
以上是php如何去除字符串中的空格和换行符的详细内容。更多信息请关注PHP中文网其他相关文章!