douxing9228 2013-03-14 08:48
浏览 31
已采纳

我无法在PHP上更改字符串编码

<?php
   $str = "Text";
   $str = mb_convert_encoding($str, "UTF-8", mb_detect_encoding($str));
   echo mb_detect_encoding($str);
?>

This code is givin me "ASCII" as output. Why?

  • 写回答

2条回答 默认 最新

  • dongzha0813 2013-03-14 08:50
    关注

    Your string has no UTF-8 specific characters, only ASCII.

    Add one in:

    $str = "Text È";
    $str = mb_convert_encoding($str, "UTF-8", mb_detect_encoding($str));
    echo mb_detect_encoding($str);
    

    You'll get UTF-8 as output now, as seen in this demo.

    However, you don't need to run the conversion to get UTF-8 as output, mb_detect_encoding() picks up that the string is UTF-8 without this step.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部