Convert Multiple Spaces To a Single Space
Nifty line of PHP code that will take multiple sequential spaces and convert into a single space. This is great for cleaning and sanitizing data before storing it.
PHP:
Nifty line of PHP code that will take multiple sequential spaces and convert into a single space. This is great for cleaning and sanitizing data before storing it.
Be careful substituting "\s" with a blank because a whitespace character can also be (e.g.) a newline or tab character ("\n" or "\t").
Better use "\ +" (escaped blank) instead of "\s+" as it will only match multiple blanks and not newlines, etc.