<?php
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); output:N
?>

最新文章

  1. Pi# - Raspberry Pi GPIO Library for .NET
  2. linux环境变量查看及修改
  3. SpringMVC详细示例实战
  4. linux端口与进程命令
  5. 把sublime添加到右键菜单(转)
  6. Objective-C 计算代码运行时间
  7. 积累的VC编程小技巧之列表框
  8. JavaScript基础学习(九)&mdash;DOM
  9. Openstack虚拟机在线迁移(Live Migration)
  10. MongoDB 中数据的替换方法实现 --类Replace()函数功能
  11. [原创]X-HDL 4.2安装与使用
  12. Python解析Pcap包类源码学习
  13. window下的计划任务
  14. 你真的会用Gson吗?Gson使用指南(4)
  15. 强化学习---TRPO/DPPO/PPO/PPO2
  16. 用python将MSCOCO和Caltech行人检测数据集转化成VOC格式
  17. Spring Cloud构建微服务架构(四)分布式配置中心(续)
  18. 使用jvisualvm工具来监控java运行情况
  19. spring-cloud学习BUG小结
  20. HUST软件测试1504班: 第0周作业成绩

热门文章

  1. django——url(路由)配置
  2. 05-Python入门学习-字符串与列表的内置方法
  3. PropertyEditor、Formatter、Converter的应用
  4. vue发送请求----vue-resource
  5. Java根据链接生成二维码
  6. css学习_css3过渡
  7. 数据库 case when then 的用法 (举个栗子~~~)
  8. Jmeter响应数据中文乱码
  9. js 中数组的遍历
  10. jQuery效果------隐藏hide()/显示show()