Removing White Space
by John on Mar.24, 2005, under PHP, Snippets
1111670088
:PHP, Snippets, white space
Quick Snippet to remove all the white space from a string.
< ?php
$string = "mary had a monkey called Booboo ";
$text = preg_replace("/(\s)/", "", $string);
?>