2016-05-17 14:43:33 +02:00
|
|
|
|
2016-05-17 14:47:08 +02:00
|
|
|
# Gestion de l'UTF-8 entre MySQL et PHP
|
|
|
|
|
2016-05-17 14:47:49 +02:00
|
|
|
## Références
|
2016-05-17 14:43:33 +02:00
|
|
|
|
|
|
|
http://www.phptherightway.com/#the_basics
|
|
|
|
https://mathiasbynens.be/notes/mysql-utf8mb4
|
2016-05-17 14:47:08 +02:00
|
|
|
|
2016-05-17 14:47:49 +02:00
|
|
|
## Paramètres PHP
|
2016-05-17 14:47:08 +02:00
|
|
|
|
|
|
|
- mb_internal_encoding('UTF-8');
|
|
|
|
- mb_http_output('UTF-8');
|
|
|
|
|
|
|
|
Utiliser les fonctions mb_* pour les chaines de caractères
|
|
|
|
|
|
|
|
## Connection avec la base de données
|
2016-05-17 14:43:33 +02:00
|
|
|
|
|
|
|
SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci
|
|
|
|
|
2016-05-17 14:47:08 +02:00
|
|
|
## Paramètres MySQL par défault
|
|
|
|
|
|
|
|
Une fois tout en utf8mb4, utiliser les paramètres par defaut
|
2016-05-17 14:43:33 +02:00
|
|
|
|
|
|
|
[client]
|
|
|
|
default-character-set = utf8mb4
|
|
|
|
|
|
|
|
[mysql]
|
|
|
|
default-character-set = utf8mb4
|
|
|
|
|
|
|
|
[mysqld]
|
|
|
|
character-set-client-handshake = FALSE
|
|
|
|
character-set-server = utf8mb4
|
|
|
|
collation-server = utf8mb4_unicode_ci
|