Return to Snippet

Revision: 5778
at April 3, 2008 10:15 by gbot


Initial Code
function remove_whitespace($string) {

	$string = preg_replace('/\s+/', ' ', $string);
	$string = trim($string);
	return $string;

}

Initial URL


Initial Description


Initial Title
remove whitespace

Initial Tags


Initial Language
PHP