欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php汉字转码的例子

程序员文章站 2022-04-28 12:38:27
...
  1. function unicode_encode($str, $encoding='gbk', $prefix='', $postfix=';'){
  2. $str = iconv($encoding, 'ucs-2', $str);
  3. $arrstr = str_split($str, 2);
  4. $unistr = '';
  5. for($i=0, $len=count($arrstr); $i {
  6. $dec = hexdec(bin2hex($arrstr[$i]));
  7. $unistr .= $prefix.$dec.$postfix;
  8. }
  9. return $unistr;
  10. } // bbs.it-home.org
  11. $str = '哈哈';
  12. $unistr = unicode_encode($str);
  13. echo $unistr.'
    ';
  14. ?>
复制代码