gpt4 book ai didi

PHP json_encode json_decode UTF-8

转载 作者:IT老高 更新时间:2023-10-28 12:54:10 27 4
gpt4 key购买 nike

如何将带有国际字符的 json 编码字符串保存到数据库中,然后在浏览器中解析解码后的字符串?

<?php           
$string = "très agréable";
// to the database
$j_encoded = json_encode(utf8_encode($string));
// get from Database
$j_decoded = json_decode($j_encoded);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<?= $j_decoded ?>
</html>

最佳答案

json utf8 编码和解码:

json_encode($data, JSON_UNESCAPED_UNICODE)

json_decode($json, false, 512, JSON_UNESCAPED_UNICODE)

强制 utf8 可能有助于:http://pastebin.com/2XKqYU49

关于PHP json_encode json_decode UTF-8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4076988/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com