I got MySQL DB which contains UTF8 column with such "ТеÑ" records. PHP's mb_detect_encoding() told me that this is UTF-8. How can I transform this "horror" into something readable?
Thank you
|
I got MySQL DB which contains UTF8 column with such "ТеÑ" records. PHP's mb_detect_encoding() told me that this is UTF-8. How can I transform this "horror" into something readable? Thank you
| |||||
feedback
|
|
I'm guessing you've got the byte string If you merely
This naturally also means you will need to save the If you must have a non-UTF-8 page, you would have to using edit re comment:
If you are getting If this is the case, you're likely going to have to go through each row of the database and ‘fix’ it by using [edit:2]
OK, so the input isn't a valid UTF-8 sequence. That could either be because you're not getting UTF-8 out of the database after all, or because a UTF-8 sequence has become truncated. For example your string If that's what you have in your database you'll need to fix the data in there before you can proceed.
You haven't confirmed that you are correctly sending UTF-8 and that the browser knows this (by checking View->Encoding), so it's not really meaningful what you see on-screen when you Tell us what you see when you | |||||
feedback
|
|
output to page with UTF8 encoding specified. browser will show it in readable form. | |||
|
feedback
|