当前位置:首页 > PHP教程 > php应用 > 列表

php实现姓名根据首字母排序的类与方法(实例代码)

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-17 16:49:42 浏览: 评论:0 

这篇文章主要介绍了php实现姓名根据首字母排序的类与方法,代码简单易懂,非常不错,具有一定的参考借鉴价值,需要的朋友参考下吧。

php将名字按首字母进行排序,具体代码如下所示:

  1. <?php 
  2. public function getFirstChar($s){ 
  3. $s0 = mb_substr($s,0,3); //获取名字的姓 
  4. $s = iconv('UTF-8','gb2312'$s0); //将UTF-8转换成GB2312编码 
  5. //dump($s0); 
  6. if (ord($s0)>128) { //汉字开头,汉字没有以U、V开头的 
  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<=-17760)return "G"
  15. if($asc>=-17759 and $asc<=-17248)return "H"
  16. if($asc>=-17247 and $asc<=-17418)return "I"
  17. if($asc>=-17417 and $asc<=-16475)return "J"
  18. if($asc>=-16474 and $asc<=-16213)return "K"
  19. if($asc>=-16212 and $asc<=-15641)return "L"
  20. if($asc>=-15640 and $asc<=-15166)return "M"
  21. if($asc>=-15165 and $asc<=-14923)return "N"
  22. if($asc>=-14922 and $asc<=-14915)return "O"
  23. if($asc>=-14914 and $asc<=-14631)return "P"
  24. if($asc>=-14630 and $asc<=-14150)return "Q"
  25. if($asc>=-14149 and $asc<=-14091)return "R"
  26. if($asc>=-14090 and $asc<=-13319)return "S"
  27. if($asc>=-13318 and $asc<=-12839)return "T"
  28. if($asc>=-12838 and $asc<=-12557)return "W"
  29. if($asc>=-12556 and $asc<=-11848)return "X"
  30. if($asc>=-11847 and $asc<=-11056)return "Y"
  31. if($asc>=-11055 and $asc<=-10247)return "Z"
  32. }else if(ord($s)>=48 and ord($s)<=57){ //数字开头 
  33. switch(iconv_substr($s,0,1,'utf-8')){ 
  34. case 1:return "Y"
  35. case 2:return "E"
  36. case 3:return "S"
  37. case 4:return "S"
  38. case 5:return "W"
  39. case 6:return "L"
  40. case 7:return "Q"
  41. case 8:return "B"
  42. case 9:return "J"
  43. case 0:return "L"
  44. }else if(ord($s)>=65 and ord($s)<=90){ //大写英文开头 
  45. return substr($s,0,1); 
  46. }else if(ord($s)>=97 and ord($s)<=122){ //小写英文开头 
  47. return strtoupper(substr($s,0,1)); 
  48. else 
  49. return iconv_substr($s0,0,1,'utf-8'); 
  50. //中英混合的词语,不适合上面的各种情况,因此直接提取首个字符即可 
  51. public function addPeople() 
  52. $userName = array('张三','马大帅','李四','王五','小二','猫蛋','狗蛋','王花','三毛','小明','李刚','张飞'); 
  53. sort($userName); 
  54. foreach($userName as $name){ 
  55. $char = $this->getFirstChar($name); 
  56. $nameArray = array(); 
  57. if(count($charArray[$char])!=0){ 
  58. $nameArray = $charArray[$char]; 
  59. array_push($nameArray,$name); 
  60. $charArray[$char] = $nameArray
  61. ksort($charArray); 
  62. $this->assign('_list',$charArray); 

页面显示

  1. <foreach name="_list" item="vo" key="k"> 
  2. <p>{$k}</p> 
  3. <foreach name="vo" item="l"> 
  4. <span class="name">{$l}</span> 
  5. </foreach> 
  6. </foreach>

Tags: php首字母排序

分享到: