At work, I'm beginning to have some issues with character encoding. I'd like to make our web app use UTF-8 all the way around. After a few hours of googling, I've only found a few sites with information on a UTF-8 LAMP setup. Does anyone know of any good resources online about UTF-8, Linux, Apache, MySql and PHP? I'll post what I've found in the answers.
|
1
|
|
|
|
|
|
Most of PHP is UTF-8 clean already, and Apache certainly is. Your weak link will be MySQL. You need to do three things to make MySQL UTF-8 clean.
Unless you tell it otherwise, MySQL will default to ISO 8859-15 (Western Eurpoean ASCII) with a Swedish sort order. If you have to do conversions to and from UTF-8, then PHP can use the libiconv functions. However, faulty conversions will silently truncate the string. |
||
|
|
|
|
These are the links I have found so far.
|
||
|
|
