$string = preg_replace('/s+/', '', $string);
$str = " Hello World! "; echo "With trim: " . trim($str);
//remove all white spaces from a string $whatonearth=preg_replace('/s/','',"what o n ear th");