<?php
$str = 'foo   o';
$str = preg_replace('/\s\s+/', ' ', $str);

echo $str;
// Çıktı 'foo o' 
?>