教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php中UNICODE 编码与解码的二个例子

php中UNICODE 编码与解码的二个例子

发布时间:2016-07-20   编辑:jiaochengji.com
本文介绍下,php中实现unicode编码与解码的二个例子,有需要的朋友参考下吧。

例1,本例中用到php的函数:preg_match_all与empty等。

<?php
/**
* unicode编码与解码
* edit www.jbxue.com
*/
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)
{
//转换编码,将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;
}
?>

例2,本例中用到php的函数:json_decode。

<?php
function unicode2utf8($str){
if(!$str) return $str;
$decode = json_decode($str);
if($decode) return $decode;
$str = '["' . $str . '"]';
$decode = json_decode($str);
if(count($decode) == 1){
return $decode[0];
}
return $str;
}
?>

您可能感兴趣的文章:
php中UNICODE 编码与解码的二个例子
php url编码与解码(加密/解密)
php对unicode转utf-8编码
php url函数用法举例
php汉字unicode编码与解码
PHP读文件乱码问题的解决方法
php json_encode中文编码的问题
php编码与中文乱码问题解决方法
PHP6的新特性:Unicode和TextIterator
JSP页面编码问题分析

关键词: unicode编码  编码  解码   
[关闭]
~ ~