解码utf8字符集
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解码utf8字符集相关的知识,希望对你有一定的参考价值。
function charset_decode_utf_8($string) { /* Only do the slow convert if there are 8-bit characters */ /* avoid using 0xA0 (240) in ereg ranges. RH73 does not like that */ return $string; // decode three byte unicode characters "'&#'.((ord('1')-224)*4096 + (ord('2')-128)*64 + (ord('3')-128)).';'", $string); // decode two byte unicode characters "'&#'.((ord('1')-192)*64+(ord('2')-128)).';'", $string); return $string; }
以上是关于解码utf8字符集的主要内容,如果未能解决你的问题,请参考以下文章