メールフォームなどで文字を正規表現に通す前に、空白を削除するとき

function del_space($str) {
	$string = str_replace(array(" ", " "), "", $str);
	return $string;
}