php正则替换所有空格和换行

替换所有空格为空,(有些回车的空格的还有一些看不见的字符串有奇效,有的时候单纯替换“ ”字符没有效果)

$contents="    abc           ";
$contents=preg_replace('/\s+/','',$contents);
//结果$contents="abc";

替换所有换行符

$contents = str_replace(array("\r\n", "\r", "\n"), "", $contents);

0 评论
内联反馈
查看所有评论