preg_replace は複数のスペースをフィルターします$text = "ooo 我是 空格"; $text = preg_replace("/(\s+)/",' ',$text); echo $text;