以下は gb2312 -> UTF-8 の関数です。
unicode -> UTF-8 のアルゴリズムをコピーしたため、GB2312->unicode
を呼び出すことはできません。 ) 中国語と英語が混在しています
プログラムに必要な GB2312.txt ファイル
//悲しいことに www.phpx.com によって書かれたプログラム
//gb2utf8.php
function gb2utf8($gb)
{
if(!トリム($gb ))
$gb;
$tmp=file($filename);
while(list($key,$value); =each($ tmp))
$codetable[hexdec(substr($value,0,6))]=substr($value,7,6)
while($gb)
{
if (ord (substr($gb,0,1))>127)
{
$this=substr($gb,0,2);
$gb=substr($gb,2,strlen($gb) ));
$utf8.=u2utf8(hexdec($codetable[hexdec(bin2hex($this))-0x8080]));
}
else
{
$gb=substr($gb,1,strlen($gb) ));
$utf8.=u2utf8(substr($gb,0,1))
}
}
$i=0;$i
return $ret;
}
function u2utf8($c)
{
for($i=0;$i< count($c );$i++)
$str="";
if ($c <0x80) {
$str.=$c;
else if ($c <0x800) {
$str .=(0xC0 $c>>6);
$str.=(0x80 $c & 0x3F)
}
else if ($c $str.=(0xE0 $c>> 12);
$str.=(0x80 $c>>6 & 0x3F);
else if ($c >18);
$str.=(0x80 $c>>12 & 0x3F);
$str.=(0x80 $c>>6 & 0x3F); (0x80 $c & 0x3F);
}
return $str;
?>
呼び出し例: GD
example.php を通じて 2 つの漢字を出力します
-type: image/ gif");
$im = imagecreate(400,300);
$bkg = ImageColorAllocate($im, 0,0,0);
$clr = ImageColorAllocate($im, 255,255,255);
$fnt = "d:/winnt /fonts/simhei.ttf";
include("gb2utf8.php");
$str = gb2utf8("中国"); , $fnt, $ str);
ImageDestroy($im);
================ ======= ========
http://www.bkjia.com/PHPjc/445195.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/445195.html
技術記事
以下は gb2312-UTF-8 関数です。unicode-UTF-8 アルゴリズムをコピーしたので、gb2utf8() を呼び出すときは中国語と英語を混在させることはできないことに注意してください。