PHP版 汉字转码的实现详解_php技巧
程序员文章站
2022-06-07 15:54:33
...
如下所示:
function unicode_encode($str, $encoding='GBK', $prefix='', $postfix=';'){
$str = iconv($encoding, 'UCS-2', $str);
$arrstr = str_split($str, 2);
$unistr = '';
for($i=0, $len=count($arrstr); $i {
$dec = hexdec(bin2hex($arrstr[$i]));
$unistr .= $prefix.$dec.$postfix;
}
return $unistr;
}
$str = '哈哈';
$unistr = unicode_encode($str);
echo $unistr.'
';
?>
复制代码 代码如下:
function unicode_encode($str, $encoding='GBK', $prefix='', $postfix=';'){
$str = iconv($encoding, 'UCS-2', $str);
$arrstr = str_split($str, 2);
$unistr = '';
for($i=0, $len=count($arrstr); $i {
$dec = hexdec(bin2hex($arrstr[$i]));
$unistr .= $prefix.$dec.$postfix;
}
return $unistr;
}
$str = '哈哈';
$unistr = unicode_encode($str);
echo $unistr.'
';
?>
上一篇: 修复断电等损坏的SQL 数据库
下一篇: 二战日军是怎么对待战俘的?战俘死亡率极高