php去除字符串中空格和换行符的方法
小编给大家分享一下php去除字符串中空格和换行符的方法,网上抓取,或者是客户填写等都会经常夹带空格换行等符号。
php去除字符串中的空格和换行符的方法:可以通过正则来实现,如【preg_replace(‘//s*/’, ”, $str);】。也可以通过PHP_EOL变量来实现,如【str_replace(PHP_EOL, ”, $str);】。
具体方法如下:
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);
}
本文出自 俞凌龙博客,转载时请注明出处及相应链接。
本文永久链接: https://blog.jlwz.cn/323