Does anyone know how to remove spaces in a row.
Like for example:
Code:
$string = str_replace(" ", " ", "tes t i n g");
Will that return "tes t i n g"?
I guess I could answer this on my own, I'll just test it out lol
EDIT: I just checked it returns "tes t i n g", anyone know how to remove alll extra white space as in double spaces completely? Will preg_replace work?
-CMX