PHP获得中文汉字拼音首字母例子

获取给出汉字中拼音的第一个汉字字母我们可以利用汉字的一个编码来进行判断,下面我们来给大家介绍一个例子,非常的简单好用.

先来看看怎样取得单个汉字的拼音首字母,请看下面这个函数,它支持GBK和UTF8编码,代码如下:

  1. function getfirstchar($s0){
  2. $fchar = ord($s0{0});
  3. if($fchar >= ord("A") and $fchar <= ord("z") )return strtoupper($s0{0});
  4. $s1 = iconv("UTF-8","gb2312", $s0);
  5. $s2 = iconv("gb2312","UTF-8", $s1);
  6. if($s2 == $s0){$s = $s1;}else{$s = $s0;}
  7. $asc = ord($s{0}) * 256 + ord($s{1}) - 65536;
  8. if($asc >= -20319 and $asc <= -20284) return "A";
  9. if($asc >= -20283 and $asc <= -19776) return "B";
  10. if($asc >= -19775 and $asc <= -19219) return "C";
  11. if($asc >= -19218 and $asc <= -18711) return "D";
  12. if($asc >= -18710 and $asc <= -18527) return "E";
  13. if($asc >= -18526 and $asc <= -18240) return "F";
  14. if($asc >= -18239 and $asc <= -17923) return "G";
  15. if($asc >= -17922 and $asc <= -17418) return "H";
  16. if($asc >= -17417 and $asc <= -16475) return "J";
  17. if($asc >= -16474 and $asc <= -16213) return "K";
  18. if($asc >= -16212 and $asc <= -15641) return "L";
  19. if($asc >= -15640 and $asc <= -15166) return "M";
  20. if($asc >= -15165 and $asc <= -14923) return "N";
  21. if($asc >= -14922 and $asc <= -14915) return "O";
  22. if($asc >= -14914 and $asc <= -14631) return "P";
  23. if($asc >= -14630 and $asc <= -14150) return "Q";
  24. if($asc >= -14149 and $asc <= -14091) return "R";
  25. if($asc >= -14090 and $asc <= -13319) return "S";
  26. if($asc >= -13318 and $asc <= -12839) return "T";
  27. if($asc >= -12838 and $asc <= -12557) return "W";
  28. if($asc >= -12556 and $asc <= -11848) return "X";
  29. if($asc >= -11847 and $asc <= -11056) return "Y";
  30. if($asc >= -11055 and $asc <= -10247) return "Z";
  31. return null;
  32. }

以上函数返回单个汉字的拼音首字母,当需要处理中文字符串时,只需要重新写一个函数,用来取得一串汉字的拼音首字母,代码如下:

  1. function pinyin1($zh){
  2. $ret = "";
  3. $s1 = iconv("UTF-8","gb2312", $zh);
  4. $s2 = iconv("gb2312","UTF-8", $s1);
  5. if($s2 == $zh){$zh = $s1;}
  6. for($i = 0; $i < strlen($zh); $i++){
  7. $s1 = substr($zh,$i,1);
  8. $p = ord($s1);
  9. if($p > 160){
  10. $s2 = substr($zh,$i++,2);
  11. $ret .= getfirstchar($s2);
  12. }else{//开源软件:phpfensi.com
  13. $ret .= $s1;
  14. }
  15. }
  16. return $ret;
  17. }

上面这个函数就是获取汉字拼音首字母的函数,使用示例:

echo pinyin1('这是中文字符串');

结果输出:ZSZWZFC

补充在 getfirstchar函数中我们有两种写法

第一种是我们上面用到的例子,代码如下:

  1. function getfirstchar($s0){
  2. $fchar = ord($s0{0});
  3. if($fchar >= ord("A") and $fchar <= ord("z") )return strtoupper($s0{0});

而另一种是我们使用的数字方法了,也比较简单了,代码如下:

  1. function getFirstChar($string) {
  2. $firstCharOrd = ord(strtoupper($string{0}));
  3. if (($firstCharOrd >= 65 && $firstCharOrd <= 91) || ($firstCharOrd >= 48 && $firstCharOrd <= 57))
  4. return strtoupper($string{0});