当尝试使用 latin1_swedish_ci 编码从数据库中检索重音字符并使用 json_encode() 将它们编码为 JSON 时,结果可能出乎意料。预期结果(例如“Abord â Plouffe”)会转换为“null”,从而使编码的 JSON 无效。
要解决此问题,需要在之前将检索到的值显式编码为 UTF-8应用 json_encode()。这可确保 JSON 输出包含正确的 UTF-8 字符并进行相应的验证。下面是如何实现这个解决方案:
// Initialize an empty array for the encoded result set
$rows = array();
// Iterate over the PHPMyAdmin result set
while ($row = mysql_fetch_assoc($result)) {
// Apply UTF-8 encoding to each row value
$rows[] = array_map('utf8_encode', $row);
}
// Output the encoded $rows
echo json_encode($rows);
在此修改后的代码中,我们利用 array_map 函数将 utf8_encode 应用于结果集中每行的每个元素。这可确保在执行 json_encode 之前所有字符都正确编码为 UTF-8。因此,生成的 JSON 输出将准确反映预期字符,并根据需要保留重音字符。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3