ホームページ  >  記事  >  バックエンド開発  >  PHP は utf-8 を Unicode 関数共有に実装します。utf-8unicode_PHP チュートリアル

PHP は utf-8 を Unicode 関数共有に実装します。utf-8unicode_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-13 10:10:15868ブラウズ

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

本当http://www.bkjia.com/PHPjc/938848.html技術記事 PHP は utf-8 を Unicode 関数共有に実装します。utf-8unicode コードは非常にシンプルですが、この関数は誰にでもお勧めします。 まずはコードです: コードは次のとおりです: public function utf8_uni...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。