I am trying to do a str_replace on the following line:
team 4 -1ööööö57167168
I've been able to do it in the past just by doing this:
str_replace("ööööö", " ",trim($line));
The desired outcome should be team 4 -1 57167168
However, now that I'm trying to do it in a Codeigniter application, it fails to replace it and I'm not sure what to try.
Is this an encoding config issue with Codeigniter? How can I get it to replace correctly?