この記事は、PHP での UNICODE エンコードとデコードの詳細な分析と紹介です。必要な方は参考にしてください。
方法 1:
コードをコピー コードは次のとおりです。
関数 unicode_encode($name)
{
$name = iconv('UTF-8', 'UCS-2', $name);
$len = strlen($name);
$str = '';
for ($i = 0; $i
{
$c = $name[$i];
$c2 = $name[$i + 1];
if (ord($c) > 0)
{ // 2 バイトのテキスト
$str .= 'u'.base_convert(ord($c), 10, 16).str_pad(base_convert(ord($c2), 10, 16), 2, 0, STR_PAD_LEFT);
}
それ以外
{
$str .= $c2;
}
}
$str;
を返します
}
//UNICODE エンコードされたコンテンツをデコードします
関数 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
{
$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;
}
それ以外
{
$name .= $str;
}
}
}
$name を返します;
}
方法 2:
コードをコピー コードは次のとおりです。
関数 unicode2utf8($str){
if(!$str) $str;
を返す
$decode = json_decode($str);
if($decode) return $decode;
$str = '["' . $str . '"]';
$decode = json_decode($str);
if(count($decode) == 1){
$decode[0] を返します;
}
$str;
を返します
}
http://www.bkjia.com/PHPjc/372321.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/372321.html技術記事この記事は、PHP での UNICODE エンコードとデコードの詳細な分析と紹介です。必要な場合は、方法 1 を参照してください。次のようにコードをコピーします: ?php function unicode_encode($name)...
。