dongzhong2018 2013-05-14 09:21
浏览 29
已采纳

包含utf8字符的PHP utf8_encode [关闭]

Background: A part of my system uses utf8_encode to convert html code to utf8 format before passing it on to json_encode.

Problem: Everything was fine until I entered UTF8 characters(Chinese) into the system. I noticed that the mentioned UTF8 characters were encoded twice and came out garbled.

Sidenote: I have no experience with charset encoding and whatnot until now. Perhaps I don't need to use utf8_encode before json_encode since my database and connections are already set to utf8. Without the Chinese characters in the html code, mb_detect_encoding would return ASCII(not ISO-8859-1). But I couldn't get through json_encode without returning null... thus the use of utf_8 encode which worked until now.

Update: I finally solved the issue by typecasting the html code as string; via (string)$html; before assigning it to json_encode().

Thanks to all who posted here that led me to the final solution.

  • 写回答

1条回答 默认 最新

  • duangou6446 2013-05-14 09:39
    关注

    I had similar problem. Maybe this would help: try to use iconv();. I had some problems with Polish characters (ąężćźłóń etc.)  in encodings other that utf8 - when I used json_encode, there was no output. Everything went just fine after using iconv();. The catch is, you have to know source encoding before you proceed. If you don't know encoding, use mb_detect_encoding() as @Lukas suggested. Example:

    $content = iconv('ISO-8859-2','UTF-8', $content);
    echo json_encode(array('content' => $content));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分