模板26套,教程文章76篇,插件13个,会员288位。

酷虾米网站资源

位置: 酷虾米 代码 php获取中文汉字首字母方法

php获取中文汉字首字母方法

栏目:代码 更新:2023-08-24 2人看过


一些场景中需要数据库中存储中文的首字母,目的是索引数据便于快速查找相关数据,例如人名、地名和通讯录等场景。

下面是php一种获取中文首字母的方法,传入的参数是中文字符串,可以是一个中文也可以是多个中文,数字和字母等非中文开头的字符串,将会返回null。

编码需GBK,请注意编码转换。

完整代码:
 
function kuxiami_getindex($word){
    if(empty($word)){return '';}
    //$word = iconv('UTF-8','GBK',$word);//传入的是UTF-8编码字符串需转换成GBK
    $firstchar=ord($word[0]);
    if($firstchar>=ord('A')&&$firstchar<=ord('z')) return strtoupper($word[0]);
    $asc=ord($word[0])*256+ord($word[1])-65536;
    if($asc>=-20319&&$asc<=-20284) return 'A';
    if($asc>=-20283&&$asc<=-19776) return 'B';
    if($asc>=-19775&&$asc<=-19219) return 'C';
    if($asc>=-19218&&$asc<=-18711) return 'D';
    if($asc>=-18710&&$asc<=-18527) return 'E';
    if($asc>=-18526&&$asc<=-18240) return 'F';
    if($asc>=-18239&&$asc<=-17923) return 'G';
    if($asc>=-17922&&$asc<=-17418) return 'H';
    if($asc>=-17417&&$asc<=-16475) return 'J';
    if($asc>=-16474&&$asc<=-16213) return 'K';
    if($asc>=-16212&&$asc<=-15641) return 'L';
    if($asc>=-15640&&$asc<=-15166) return 'M';
    if($asc>=-15165&&$asc<=-14923) return 'N';
    if($asc>=-14922&&$asc<=-14915) return 'O';
    if($asc>=-14914&&$asc<=-14631) return 'P';
    if($asc>=-14630&&$asc<=-14150) return 'Q';
    if($asc>=-14149&&$asc<=-14091) return 'R';
    if($asc>=-14090&&$asc<=-13319) return 'S';
    if($asc>=-13318&&$asc<=-12839) return 'T';
    if($asc>=-12838&&$asc<=-12557) return 'W';
    if($asc>=-12556&&$asc<=-11848) return 'X';
    if($asc>=-11847&&$asc<=-11056) return 'Y';
    if($asc>=-11055&&$asc<=-10247) return 'Z';
    return null;

}

附件下载 [ 下载次数:999 ]

    收藏、推荐 Functions

    我要收藏

    文章《php获取中文汉字首字母方法》的地址:https://www.kuxiami.com/daima/f3c47ca0425c069ce920be3dea03beac.html

    代码最新文章