六月婷婷综合激情-六月婷婷综合-六月婷婷在线观看-六月婷婷在线-亚洲黄色在线网站-亚洲黄色在线观看网站

明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

簡繁轉(zhuǎn)換的程序

[摘要]PHP代碼:--------------------------------------------------------------------------------<?php/** *中速版,中等內(nèi)存使用,使用于一般需求或有大量重復(fù)字的大段文本 *@text:待轉(zhuǎn)換的字符串 *@t...
PHP代碼:--------------------------------------------------------------------------------

<?php
/**
*中速版,中等內(nèi)存使用,使用于一般需求或有大量重復(fù)字的大段文本
*@text:待轉(zhuǎn)換的字符串
*@table_file:轉(zhuǎn)換映射表文件名
*/
function encode_trans1($text,$table_file='gb2big5') {
$fp = fopen($table_file.'.table', "r");
$cache = array();
$max=strlen($text)-1;
for($i=0;$i<$max;$i++) {
$h=ord($text[$i]);
if($h>=160) {
$l=ord($text[$i+1]);
if($h==161 && $l==64) {
$text[$i]=" ";
} else{
$cut = substr($text,$i,2);
if(!$cache[$cut]) {
fseek($fp,($h-160)*510+($l-1)*2);
$cache[$cut] = fread($fp,2);
}
$text[$i] = $cache[$cut][0];
$text[++$i] = $cache[$cut][1];
}
}
}
fclose($fp);
return $text;
}

/**
*低速版,最低內(nèi)存使用,使用于少量字符時(shí)
*@text:待轉(zhuǎn)換的字符串
*@table_file:轉(zhuǎn)換映射表文件名
*/
function encode_trans2($text,$table_file='gb2big5') {
$fp = fopen($table_file.'.table', "r");
$max=strlen($text)-1;
for($i=0;$i<$max;$i++) {
$h=ord($text[$i]);
if($h>=160) {
$l=ord($text[$i+1]);
if($h==161 && $l==64) {
$gb=" ";
}else{
fseek($fp,($h-160)*510+($l-1)*2);
$gb=fread($fp,2);
}
$text[$i]=$gb[0];
$text[$i+1]=$gb[1]; $i++;
}
}
fclose($fp);
return $text;
}
/**
*高速版,最高內(nèi)存使用,使用于大段文本時(shí)
*@text:待轉(zhuǎn)換的字符串
*@table_file:轉(zhuǎn)換映射表文件名
*/
function encode_trans3($text,$table_file='gb2big5') {
$fp = fopen($table_file.'.table', "r");
$str = fread($fp,strlen($table_file.'.table'));
fclose($fp);
$max=strlen($text)-1;
for($i=0;$i<$max;$i++) {
$h=ord($text[$i]);
if($h>=160) {
$l=ord($text[$i+1]);
if($h==161 && $l==64) {
$text[$i]=' ';
$text[++$i]=' ';
}else{
$pos = ($h-160)*510+($l-1)*2;
$text[$i]=$str[$pos];
$text[++$i]=$str[$pos+1];
}
}
}
return $text;
}
?>

--------------------------------------------------------------------------------






相關(guān)文章

主站蜘蛛池模板: 亚洲不卡在线播放 | 日韩欧美国产一区二区三区 | 亚洲自偷自偷图片在线高清 | 手机看片日韩欧美 | 日本 欧美 在线 | 亚洲区在线播放 | 天天欲色成人综合网站 | 在线免费色 | 清清草视频在线 | 四虎欧美永久在线精品免费 | 三级黄色免费片 | 亚洲精品免费在线视频 | 亚洲精品亚洲人成在线播放 | 午夜手机福利视频 | 一国产一级淫片a免费播放口 | 天天综合天天添夜夜添狠狠添 | 任我鲁这里有精品视频在线播 | 欧美亚洲国产日韩 | 亚洲精品在线看 | 午夜小视频男女在线观看 | 亚洲欧美日韩另类在线专区 | 亚洲无线乱码高清在线观看一区 | 日本成人xxx | 天天干天天操天天玩 | 亚洲欧洲精品视频在线观看 | 天天操天天看 | 亚洲狼人综合网 | 日本天堂免费a | 欧美又大又粗又爽又硬 | 日韩美女在线观看 | 亚洲一色 | 天天做天天爱天天爽综合区 | 青娱乐精品视频在线观看 | 日日夜夜婷婷 | 欧美一级大片免费看 | 伊人影视频 | 天天干夜夜草 | 欧美中文字幕 | 日日夜夜狠狠 | 亚洲日本天堂在线 | 午夜精品久久久久久毛片 |