当前位置:首页 > PHP教程 > php函数 > 列表

php获取汉字首字母的函数

发布:smiling 来源: PHP粉丝网  添加日期:2020-06-01 10:37:18 浏览: 评论:0 

本文介绍用php实现汉字转化为首字母的方法,主要功能是:功能明确,易于修改维护和扩展; 英文的字串:不变返回(包括数字);中文字符串:返回拼音首字符; 中英混合串: 返回拼音首字符和英文

网上的方法有不少,都是一样的原理,按照需求,做了一下版本的class类文件,主要功能是:功能明确,易于修改维护和扩展; 英文的字串:不变返回(包括数字);中文字符串:返回拼音首字符; 中英混合串: 返回拼音首字符和英文。该算法采用了二分法查找,修复了之前字母Z读取成Y的错误。好东西要收藏,故在此留下印记,以供后人考证!

  1. <?php  
  2.  /** 
  3. * Modified by http://iulog.com @ 2013-05-07 
  4. * 修复二分法查找方法 
  5. * 汉字拼音首字母工具类 
  6. *  注: 英文的字串:不变返回(包括数字)    eg .abc123 => abc123 
  7. *      中文字符串:返回拼音首字符        eg. 测试字符串 => CSZFC 
  8. *      中英混合串: 返回拼音首字符和英文   eg. 我i我j => WIWJ 
  9. *  eg. 
  10. *  $py = new str2PY(); 
  11. *  $result = $py->getInitials('啊吧才的饿飞就好i就看了吗你哦平去人是他uv我想一在'); 
  12. */ 
  13. class str2PY 
  14.     private $_pinyins = array
  15.         176161 => 'A'
  16.         176197 => 'B'
  17.         178193 => 'C'
  18.         180238 => 'D'
  19.         182234 => 'E'
  20.         183162 => 'F'
  21.         184193 => 'G'
  22.         185254 => 'H'
  23.         187247 => 'J'
  24.         191166 => 'K'
  25.         192172 => 'L'
  26.         194232 => 'M'
  27.         196195 => 'N'
  28.         197182 => 'O'
  29.         197190 => 'P'
  30.         198218 => 'Q'
  31.         200187 => 'R'
  32.         200246 => 'S'
  33.         203250 => 'T'
  34.         205218 => 'W'
  35.         206244 => 'X'
  36.         209185 => 'Y'
  37.         212209 => 'Z'
  38.     ); 
  39.     private $_charset = null; 
  40.     /** 
  41.      * 构造函数, 指定需要的编码 default: utf-8 
  42.      * 支持utf-8, gb2312 
  43.      * 
  44.      * @param unknown_type $charset 
  45.      */ 
  46.     public function __construct( $charset = 'utf-8' ) 
  47.     { 
  48.         $this->_charset    = $charset
  49.     } 
  50.     /** 
  51.      * 中文字符串 substr 
  52.      * 
  53.      * @param string $str 
  54.      * @param int    $start 
  55.      * @param int    $len 
  56.      * @return string 
  57.      */ 
  58.     private function _msubstr ($str$start$len
  59.     { 
  60.         $start  = $start * 2; 
  61.         $len    = $len * 2; 
  62.         $strlen = strlen($str); 
  63.         $result = ''
  64.         for ( $i = 0; $i < $strlen$i++ ) { 
  65.             if ( $i >= $start && $i < ($start + $len) ) { 
  66.                 if ( ord(substr($str$i, 1)) > 129 ) $result .= substr($str$i, 2); 
  67.                 else $result .= substr($str$i, 1); 
  68.             } 
  69.             if ( ord(substr($str$i, 1)) > 129 ) $i++; 
  70.         } 
  71.         return $result
  72.     } 
  73.     /** 
  74.      * 字符串切分为数组 (汉字或者一个字符为单位) 
  75.      * 
  76.      * @param string $str 
  77.      * @return array 
  78.      */ 
  79.     private function _cutWord( $str ) 
  80.     { 
  81.         $words = array(); 
  82.          while ( $str != "" ) 
  83.          { 
  84.             if ( $this->_isAscii($str) ) {/*非中文*/ 
  85.                 $words[] = $str[0]; 
  86.                 $str = substr$strstrlen($str[0]) ); 
  87.             }else
  88.                 $word = $this->_msubstr( $str, 0, 1 ); 
  89.                 $words[] = $word
  90.                 $str = substr$strstrlen($word) ); 
  91.             } 
  92.          } 
  93.          return $words
  94.     } 
  95.     /** 
  96.      * 判断字符是否是ascii字符 
  97.      * 
  98.      * @param string $char 
  99.      * @return bool 
  100.      */ 
  101.     private function _isAscii( $char ) 
  102.     { 
  103.         return ( ord( substr($char,0,1) ) < 160 ); 
  104.     } 
  105.     /** 
  106.      * 判断字符串前3个字符是否是ascii字符 
  107.      * 
  108.      * @param string $str 
  109.      * @return bool 
  110.      */ 
  111.     private function _isAsciis( $str ) 
  112.     { 
  113.         $len = strlen($str) >= 3 ? 3: 2; 
  114.         $chars = array(); 
  115.         for$i = 1; $i < $len -1; $i++ ){ 
  116.             $chars[] = $this->_isAscii( $str[$i] ) ? 'yes':'no'
  117.         } 
  118.         $result = array_count_values$chars ); 
  119.         if ( emptyempty($result['no']) ){ 
  120.             return true; 
  121.         } 
  122.         return false; 
  123.     } 
  124.     /** 
  125.      * 获取中文字串的拼音首字符 
  126.      * 
  127.      * @param string $str 
  128.      * @return string 
  129.      */ 
  130.     public function getInitials( $str ) 
  131.     { 
  132.         if ( emptyempty($str) ) return ''
  133.         if ( $this->_isAscii($str[0]) && $this->_isAsciis( $str )){ 
  134.             return $str
  135.         } 
  136.         $result = array(); 
  137.         if ( $this->_charset == 'utf-8' ){ 
  138.             $str = iconv( 'utf-8''gb2312'$str ); 
  139.         } 
  140.         $words = $this->_cutWord( $str ); 
  141.         foreach ( $words as $word ) 
  142.         { 
  143.             if ( $this->_isAscii($word) ) {/*非中文*/ 
  144.                 $result[] = $word
  145.                 continue
  146.             } 
  147.             $code = ord( substr($word,0,1) ) * 1000 + ord( substr($word,1,1) ); 
  148.             /*获取拼音首字母A--Z*/ 
  149.             if ( ($i = $this->_search($code)) != -1 ){ 
  150.                 $result[] = $this->_pinyins[$i]; 
  151.             } 
  152.         } 
  153.         return strtoupper(implode('',$result)); 
  154.     } 
  155.     private function _getChar( $ascii ) 
  156.     { 
  157.         if ( $ascii >= 48 && $ascii <= 57){ 
  158.             return chr($ascii);  /*数字*/ 
  159.         }elseif ( $ascii>=65 && $ascii<=90 ){ 
  160.             return chr($ascii);   /* A--Z*/ 
  161.         }elseif ($ascii>=97 && $ascii<=122){ 
  162.             return chr($ascii-32); /* a--z*/ 
  163.         }else
  164.             return '-'/*其他*/ 
  165.         } 
  166.     } 
  167.  
  168.     /** 
  169.      * 查找需要的汉字内码(gb2312) 对应的拼音字符( 二分法 ) 
  170.      * 
  171.      * @param int $code 
  172.      * @return int 
  173.      */ 
  174.     private function _search( $code ) 
  175.     { 
  176.         $data = array_keys($this->_pinyins); 
  177.         $lower = 0; 
  178.         $upper = sizeof($data)-1; 
  179.   $middle = (int) round(($lower + $upper) / 2); 
  180.         if ( $code < $data[0] ) return -1; 
  181.         for (;;) { 
  182.             if ( $lower > $upper ){ 
  183.                 return $data[$lower-1]; 
  184.             } 
  185.             $tmp = (int) round(($lower + $upper) / 2); 
  186.             if ( !isset($data[$tmp]) ){ 
  187.     return $data[$middle]; 
  188.             }else{  
  189.     $middle = $tmp
  190.    } 
  191.             if ( $data[$middle] < $code ){ 
  192.                 $lower = (int)$middle + 1; 
  193.             }else if ( $data[$middle] == $code ) { 
  194.                 return $data[$middle]; 
  195.             }else
  196.                 $upper = (int)$middle - 1; 
  197.             }//phpfensi.com 
  198.         } 
  199.     } 
  200. ?> 

Tags: php获取汉字首字母

分享到: