本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

PHPJSON转码中文乱码:如何解决json

网络教程 app 1℃

PHPJSON转码中文乱码如何解决json

json 转码乱码问题

php 代码中使用 json_encode 函数输出 json 字符串时,出现中文内容乱码。如以下示例代码所示:

// php 页面代码if ($result1) { $users = array(); $i = 0; while ($row = mysql_fetch_array($result1, mysql_assoc)) { $users[$i] = $row; $i++; } echo json_encode(array("result" => "success", "countall" => $roa[0], "data" => $users));} else { echo json_encode(array("result" => "fail"));}

输出的 json 字符串中,中文“李四”乱码为:“u53bb”。

错误解析

代码中使用的 json_encode 函数默认将字符串转码为 unicode 编码格式,而不是 utf-8。中文在 unicode 编码中的表示形式与 utf-8 不同。

解决方案

要解决乱码问题,需要在使用 json_encode 函数时指定 utf-8 编码选项:

// PHP 页面代码if ($result1) { $users = array(); $i = 0; while ($row = mysql_fetch_array($result1, MYSQL_ASSOC)) { $users[$i] = $row; $i++; } echo json_encode(array("result" => "success", "countAll" => $roa[0], "data" => $users), JSON_UNESCAPED_UNICODE);} else { echo json_encode(array("result" => "fail"));}

json_unescaped_unicode 选项指示 json_encode 函数将 unicode 字符作为原始 unicode 码点输出,而不是转义序列。这样就不会出现乱码问题了。

以上就是PHP JSON 转码中文乱码:如何解决 json_encode 函数输出乱码?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » PHPJSON转码中文乱码:如何解决json

喜欢 (0)