教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php unicode解码工具(unicode编码转换器)

php unicode解码工具(unicode编码转换器)

发布时间:2017-08-08   编辑:jiaochengji.com
分享一例php实现的unicode解码工具,一个简单的unicode编码转换器,学习下php unicode编码转换的实现方法,有需要的朋友参考下。

本节内容:
php制作Unicode编码解码的在线转换工具代码。

完整代码:
 

复制代码 代码示例:
<?php
//Unicode编码解码转换
function unicode_encode($name)
{
    $name = iconv('UTF-8', 'UCS-2', $name);
    $len = strlen($name);
    $str = '';
    for ($i = 0; $i < $len - 1; $i = $i + 2)
    {
        $c = $name[$i];
        $c2 = $name[$i + 1];
        if (ord($c) > 0)
        {   //两个字节的文字
            $str .= '\u'.base_convert(ord($c), 10, 16).str_pad(base_convert(ord($c2), 10, 16), 2, 0, STR_PAD_LEFT);
        }
        else
        {
            $str .= $c2;
        }
    }
    return $str;
}
//将UNICODE编码后的内容进行解码
function unicode_decode($name)
{ // www.jbxue.com
    //转换编码,将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;
}

您可能感兴趣的文章:
php unicode解码工具(unicode编码转换器)
php对unicode转utf-8编码
php中UNICODE 编码与解码的二个例子
php汉字unicode编码与解码
详细阐述PHP环境下如何将GBK编码转成UTF-8格式
php中把unicode编码转化为中文
js编码转换工具实现代码
python有哪几种编码方式
python如何解决中文乱码问题
一文了解py2/py3编码问题

关键词: unicode编码  编码  编码转换   
[关闭]
~ ~