我在php中遇到“Warning: json_encode() [function.json-encode]: Invalid UTF-8 sequence in argument in...
”错误。我不想逃避无效的角色,我需要它们。如何在json_encode()中使用无效字符。
在mysql数据库中,我使用的是“utf8_general_ci
”。 (感谢)
try {
$dbh = new PDO("mysql:host=$dbhost;dbname=$dbname", $dbuser, $dbpass);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $dbh->query($sql);
$dbh = null;
$provinces = $stmt->fetchAll(PDO::FETCH_OBJ);
echo '{"items":'. json_encode($provinces ) .'}';
} catch(PDOException $e) {
echo '{"error":{"text":'. $e->getMessage() .'}}';
}