<?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?
<?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?
收起
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.
报告相同问题?