Home > php教程 > php手册 > body text

php获取中文字符拼音首字母

WBOY
Release: 2016-06-07 11:37:01
Original
1062 people have browsed it

php获取中文字符拼音首字母
    <br> /**<br>      * @name php获取中文字符拼音首字母<br>      * @param $str<br>      * @return null|string<br>      * @author 潘军伟<panjunwei><br>      * @time 2015-09-14 17:58:14<br>      */<br>     public function getFirstCharter($str)<br>     {<br>         if (empty($str)) {<br>             return '';<br>         }<br>         $fchar = ord($str{0});<br>         if ($fchar >= ord('A') && $fchar          $s1 = iconv('UTF-8', 'gb2312', $str);<br>         $s2 = iconv('gb2312', 'UTF-8', $s1);<br>         $s = $s2 == $str ? $s1 : $str;<br>         $asc = ord($s{0}) * 256 + ord($s{1}) - 65536;<br>         if ($asc >= -20319 && $asc          if ($asc >= -20283 && $asc          if ($asc >= -19775 && $asc          if ($asc >= -19218 && $asc          if ($asc >= -18710 && $asc          if ($asc >= -18526 && $asc          if ($asc >= -18239 && $asc          if ($asc >= -17922 && $asc          if ($asc >= -17417 && $asc          if ($asc >= -16474 && $asc          if ($asc >= -16212 && $asc          if ($asc >= -15640 && $asc          if ($asc >= -15165 && $asc          if ($asc >= -14922 && $asc          if ($asc >= -14914 && $asc          if ($asc >= -14630 && $asc          if ($asc >= -14149 && $asc          if ($asc >= -14090 && $asc          if ($asc >= -13318 && $asc          if ($asc >= -12838 && $asc          if ($asc >= -12556 && $asc          if ($asc >= -11847 && $asc          if ($asc >= -11055 && $asc          return null;<br>     }</panjunwei>本文固定链接: http://www.seo0395.com/archives-225
转载请注明: 潘工 2015年09月15日 于 潘军伟博客http://www.seo0395.com 发表

AD:真正免费,域名+虚机+企业邮箱=0元

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template