标签: php encoding
我想创建一个utf8编码的字符串,但我不知道原来的字符集是什么。
utf8
字符串的原始字符集可能是GBK,iso-8859-1或其他我不知道的字符集。
GBK
iso-8859-1
我使用mb_detect_encoding($content, 'UTF-8', true)和iconv($original, "UTF-8", $content);
mb_detect_encoding($content, 'UTF-8', true)
iconv($original, "UTF-8", $content);
如何获取原始编码?
答案 0 :(得分:0)
我认为这可能有用http://php.net/manual/en/function.utf8-encode.php