php は utf-8 から Unicode への関数共有、utf-8unicode を実装します
コードは非常にシンプルですが、機能は非常に実用的です。誰にでもお勧めします。
まずコードを送ってください:
コードをコピーします コードは次のとおりです:
パブリック関数 utf8_unicode($str) {
$unicode = array();
$values = array();
$探している = 1;
for ($i = 0; $i
$thisValue = ord( $str[ $i ] );
if ( $thisValue
// 0-9 を除外します
If ($thisValue >= ord('0') && $thisValue
$unicode[] = chr($thisValue);
}
その他 {
$unicode[] = '%'.dechex($thisValue);
}
} else {
If ( $thisValue
$unicode[] = $str[ $i ];
} else {
If ( count( $values ) == 0 ) {
$ LookingFor = ( $thisValue
}
$values[] = $thisValue;
If ( count( $values ) == $lookFor ) {
$number = ( $lookFor == 3 ) ?
( ( $values[0] % 16 ) * 4096 ) + ( ( $values[1] % 64 ) * 64 ) + ( $values[2] % 64 ):
(($ values [0]%32) * 64) +($ values [1]%64);
$number = dechex($number);
$unicode[] = (strlen($number)==3)?"u0".$number:"u".$number;
$values = array();
$lookFor = 1;
} // if
} // if
}
} //
用
リターン implode("",$unicode);
}
http://www.bkjia.com/PHPjc/938848.html
www.bkjia.com本当http://www.bkjia.com/PHPjc/938848.html技術記事 PHP は utf-8 を Unicode 関数共有に実装します。utf-8unicode コードは非常にシンプルですが、この関数は誰にでもお勧めします。 まずはコードです: コードは次のとおりです: public function utf8_uni...