ホームページ >バックエンド開発 >PHPチュートリアル >PHP エンコード変換クラス 3
PHPエンコード変換クラス3
次のファイルを含む、PHP エンコード変換クラスの添付ファイルをダウンロードしてください。
?converter.class.php
/tables/BIG2GB.テーブル
/tables/BIG2UNI.テーブル
/tables/big5-unicode.table
/tables/GB2BIG.テーブル
/tables/gb-big5.table
/tables/GBK2PY.テーブル
/tables/GBK2UNI.Table
/tables/gb-unicode.table
/tables/UNI2BIG.テーブル
/tables/UNI2GBK.テーブル
?
使用方法:
$Conv=new converter; $String='GB2312转BIG(简转繁体)'; $String=$Conv->convert('GB','BIG',$String); $String='BIG转GB2312(繁转简体); $String=$Conv->convert('BIG','GB',$String); $String='GBK转UTF'; $String=$Conv->convert('GBK','UTF',$String); $String='BIG转UTF'; $String=$Conv->convert('BIG','UTF',$String); $String='UTF转GBK'; $String=$Conv->convert('UTF','GBK',$String); $String='UTF转BIG'; $String=$Conv->convert('UTF','BIG',$String);
?
GBK、UTF、BIG5、unicode 間のエンコード変換と、中国語文字のピンインへの変換をサポートします。