Trim Extra Whitespace

Remove extra whitespace from a string, keeping single spaces between words.

Code

General
preg_replace('/\s+/', ' ', trim($str));

Parameters

The string to clean up

Server

More PHP Snippets