欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP自定义函数获取汉字首字母的方法

程序员文章站 2024-03-31 18:41:28
本文实例讲述了php自定义函数获取汉字首字母的方法。分享给大家供大家参考,具体如下: 首字母很重要,可以进行排序使用。 城市列表等等。

本文实例讲述了php自定义函数获取汉字首字母的方法。分享给大家供大家参考,具体如下:

首字母很重要,可以进行排序使用。

城市列表等等。

<?php
/*
* created on 2016-12-1
*/
function getfirstcharter($str)
{
  if (empty($str)) {
    return '';
  }
  $fchar = ord($str{0});
  if ($fchar >= ord('a') && $fchar <= ord('z'))
    return strtoupper($str{0});
  $s1 = iconv('utf-8', 'gb2312', $str);
  $s2 = iconv('gb2312', 'utf-8', $s1);
  $s = $s2 == $str ? $s1 : $str;
  $asc = ord($s{0}) * 256 + ord($s{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;
}
$firstchar = getfirstcharter('');
print_r($firstchar);//输出:j
?>

更多关于php相关内容感兴趣的读者可查看本站专题:《php常用函数与技巧总结》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php错误与异常处理方法总结》、《php基本语法入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家php程序设计有所帮助。