I need to normalize the spaces in a string:
- Remove multiple adjacent spaces
- Remove spaces at the beginning and end of the string
E.g. " my name is "
=> my name is
I tried
str_replace(' ',' ',$str);
I also tried php Replacing multiple spaces with a single space but that didn't work either.