国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

PHP獲得中文漢字拼音首字母例子

2024-09-04 11:49:06
字體:
來源:轉載
供稿:網友

獲取給出漢字中拼音的第一個漢字字母我們可以利用漢字的一個編碼來進行判斷,下面我們來給大家介紹一個例子,非常的簡單好用.

先來看看怎樣取得單個漢字的拼音首字母,請看下面這個函數,它支持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; 

以上函數返回單個漢字的拼音首字母,當需要處理中文字符串時,只需要重新寫一個函數,用來取得一串漢字的拼音首字母,代碼如下:

  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{//開源軟件:Vevb.com 
  13.    $ret .= $s1
  14.   } 
  15.  } 
  16.  return $ret

上面這個函數就是獲取漢字拼音首字母的函數,使用示例:

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});

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 灵台县| 桦甸市| 独山县| 聂拉木县| 阿克苏市| 宜宾市| 青铜峡市| 舒城县| 梁河县| 南皮县| 青冈县| 卢龙县| 清水河县| 乌审旗| 任丘市| 绥宁县| 南城县| 高陵县| 金湖县| 绥德县| 澜沧| 信丰县| 雷山县| 郁南县| 毕节市| 平陆县| 应城市| 博白县| 贵德县| 永福县| 上高县| 西城区| 博客| 公安县| 山阴县| 剑河县| 仁怀市| 宕昌县| 西宁市| 云浮市| 东港市|