Home >php教程 >php手册 >php获取汉字拼音首字母的函数(真正可以使用的

php获取汉字拼音首字母的函数(真正可以使用的

WBOY
WBOYOriginal
2016-06-21 08:49:071141browse

现实中我们经常看到这样的说明,排名不分先后,按姓名首字母进行排序。这是中国人大多数使用的排序方法。那么在php程序中该如何操作呢?下面就分享一下在php程序中获取汉字拼音的首字母的方法,在网上搜到的大多数是有问题的,这个可是经过作者实践应用过的,真的可以使用的哦。

//php获取中文字符拼音首字母
function getFirstCharter($str){
	if(empty($str)){return '';}
	$fchar=ord($str{0});
	if($fchar>=ord('A')&&$fchar=-20319&&$asc=-20283&&$asc=-19775&&$asc=-19218&&$asc=-18710&&$asc=-18526&&$asc=-18239&&$asc=-17922&&$asc=-17417&&$asc=-16474&&$asc=-16212&&$asc=-15640&&$asc=-15165&&$asc=-14922&&$asc=-14914&&$asc=-14630&&$asc=-14149&&$asc=-14090&&$asc=-13318&&$asc=-12838&&$asc=-12556&&$asc=-11847&&$asc=-11055&&$asc
<p><font face="Courier New">举例如下:</font></p>
<pre title="code">
echo getFirstCharter('程序员www.Alixixi.com');//结果将输出:C



Statement:
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