Home > php教程 > php手册 > PHP版 汉字转码的实现详解

PHP版 汉字转码的实现详解

WBOY
Release: 2016-06-13 11:49:57
Original
1000 people have browsed it

如下所示:

复制代码 代码如下:


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.'
';
?>


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template