I'm having this problem with UTF8 string comparison which I really have no idea about and it starts to give me headache. Please help me out.
Basically I have this string from a xml document encoded in UTF8: 'Mina Tidigare anställningar'
And when I compare that string with the exactly the same string which I typed myself: 'Mina Tidigare anställningar' (also in UTF8). And the result is FALSE!!!
I have no idea why. It is so strange. Can someone help me out?
|
|
||||
| show 4 more comments |
|
This seems somewhat relevant. To simplify, there are several ways to get the same text in Unicode (and therefore UTF8): for example, this: Your best bet would be the normalizer class - normalize both strings to the same normalization form and compare the results. In one of the comments, you show these hex representations of the strings:
Note the parts I marked, apparently there are two parts to this problem.
|
|||||||||||||||||
|
|
Let's try blindly: maybe both UTF-8 strings have not the same underlying representation (you can get characters with accents as a sequence or as a unique character). You should give use some hex dump of both UTF8 strings and someone may be able to help. |
|||||
|
|
mb_detect_encoding($s, "UTF-8") == "UTF-8" ? : $s = utf8_encode($s); |
|||
|
|
ä, IIRC. – Piskvor Sep 3 '10 at 15:01