MySQL
Verbinding maken met UTF-8 Verschillende programmeertaal gebruiken.
Zoeken…
Python
1e of 2e regel in broncode (om literals te hebben in de code utf8-gecodeerd):
# -*- coding: utf-8 -*-
Verbinding:
db = MySQLdb.connect(host=DB_HOST, user=DB_USER, passwd=DB_PASS, db=DB_NAME,
charset="utf8mb4", use_unicode=True)
Voor webpagina's, een van deze:
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
PHP
In php.ini (dit is de standaard na PHP 5.6):
default_charset UTF-8
Bij het bouwen van een webpagina:
header('Content-type: text/plain; charset=UTF-8');
Bij het verbinden met MySQL:
(for mysql:) Do not use the mysql_* API!
(for mysqli:) $mysqli_obj->set_charset('utf8mb4');
(for PDO:) $db = new PDO('dblib:host=host;dbname=db;charset=utf8', $user, $pwd);
Gebruik in code geen conversieroutines.
Voor gegevensinvoer
<form accept-charset="UTF-8">
Voor JSON, om \uxxxx
te vermijden:
$t = json_encode($s, JSON_UNESCAPED_UNICODE);
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow