首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >PHP json_encode json_decode UTF-8

PHP json_encode json_decode UTF-8
EN

Stack Overflow用户
提问于 2010-11-02 18:59:47
回答 8查看 174.9K关注 0票数 34

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

代码语言:javascript
复制
<?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> 
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/4076988

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档