我Warning: json_encode() [function.json-encode]: Invalid UTF-8 sequence in argument in...
在 php.ini 中收到“”错误。我不想转义无效字符,我需要它们。如何在 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() .'}}';
}