• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

分享PHP代码 UTF-8和Unicode编码互转(多语言)

php 搞代码 3年前 (2022-01-23) 26次浏览 已收录 0个评论

PHP UTF-8和Unicode编码互转

/**      * //将内容进行UNICODE编码     * utf-8 转unicode     *      * @param string $name     * @return string     */    fu本2文来*源gao($daima.com搞@代@#码(网搞gaodaima代码nction utf8_unicode($name){          $name = iconv('UTF-8', 'UCS-2', $name);          $len  = strlen($name);          $str  = '';          for ($i = 0; $i  0){   //两个字节的文字                  $str .= '\u'.base_convert(ord($c), 10, 16).str_pad(base_convert(ord($c2), 10, 16), 2, 0, STR_PAD_LEFT);                  //$str .= base_convert(ord($c), 10, 16).str_pad(base_convert(ord($c2), 10, 16), 2, 0, STR_PAD_LEFT);              } else {                  $str .= '\u'.str_pad(base_convert(ord($c2), 10, 16), 4, 0, STR_PAD_LEFT);                  //$str .= str_pad(base_convert(ord($c2), 10, 16), 4, 0, STR_PAD_LEFT);              }          }          $str = strtoupper($str);//转换为大写          return $str;      }        /**      * unicode 转 utf-8      *      * @param string $name      * @return string      */      function unicode_decodessss($name)      {          $name = strtolower($name);          // 转换编码,将Unicode编码转换成可以浏览的utf-8编码          $pattern = '/([\w]+)|(\\\u([\w]{4}))/i';          preg_match_all($pattern, $name, $matches);          if (!empty($matches))          {              $name = '';              for ($j = 0; $j < count($matches[0]); $j++)              {                  $str = $matches[0][$j];                  if (strpos($str, '\\u') === 0)                  {                      $code = base_convert(substr($str, 2, 2), 16, 10);                      $code2 = base_convert(substr($str, 4), 16, 10);                      $c = chr($code).chr($code2);                      $c = iconv('UCS-2', 'UTF-8', $c);                      $name .= $c;                  }                  else                  {                      $name .= $str;                  }              }          }          return $name;      }  

调用及结果:

$utf8_str = '我';//这是汉字“你”的Unicode编码$unicode_str = '\u4f60';//输出 6211echo utf8_unicode($utf8_str) . "
";//输出汉字“你”echo unicode_decodes($unicode_str);

注: 由于浏览器默认会解读,所以要看源代码

\U6211

以上就介绍了分享PHP代码 UTF-8和Unicode编码互转(多语言),包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:分享PHP代码 UTF-8和Unicode编码互转(多语言)
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址