在匹配内容确定的情况下不要用正则 效率低下 建议使用str_replaceecho str_replace(" ","","123 45 6");一定要用正则的话preg_replace('/ /','',"123 45 6");