For exemple, if I use a function like:

function string_cleaner($string) {
    $replace = array('Ø', 'ø', 'ă', 'ü'); // more and more special chars
    $replacement = array('', '', 'a', 'u');

    $string = str_replace($replace, $replacement, $string);

    return $string;
}

This does not work when I call, and use these special characters. With other simple characters I don't have problems...

The strings are UTF-8 encrypted. What would be the cause?

link|improve this question

2  
Is your php file stored in UTF-8 format? – Felix Yan Dec 17 '11 at 16:04
Most likely if strings are UTF8, then the source file, in which these characters are hardcoded, isn't in UTF8. – Slava Dec 17 '11 at 16:05
If they are UTF-8 encoded you need to replace the encoded version, you are saying replace the unencoded one, which it shouldn't find – Tony Hopkinson Dec 17 '11 at 16:06
feedback

1 Answer

up vote 3 down vote accepted

Check and make sure that your source files are encoded in UTF-8 as well. This can be easily avoided in the future by changing the default encoding to UTF-8 within your text editor of choice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.