PHP实现将汉字转换为拼音及获取词语首字母的方法

时间:2017-09-05

测试代码如下:

$pinyin = new Pinyin();
echo $pinyin->getFirstChar("湖北武汉")."<br/>";
echo $pinyin->getPinyin("北上广")."<br/>";
echo $pinyin->getPinyin("火影")."<br/>";
echo $pinyin->getFirstChar("获得")."<br/>";
echo $pinyin->getFirstChar("TOM")."<br/>";

运行结果:

H
bei shang guang 
huo ying 
H
T

PS:这里再为大家提供几款本站拼音与字母相关工具供大家参考:

在线中英文根据首字母排序工具:
http://tools.jb51.net/aideddesign/zh_paixu

在线汉字转换成拼音工具:

http://tools.jb51.net/transcoding/pinyin

在线中文汉字转拼音工具:
http://tools.jb51.net/transcoding/hanzi2pinyin

在线中文汉字拼音对照转换工具:
http://tools.jb51.net/transcoding/zh_pinyin

在线字母大小写转换工具:
http://tools.jb51.net/transcoding/upper

  • 共3页:
  • 上一页
  • 2/3
  • 下一页
  • 上一篇:基于PHP中自带的字符串操作函数合集 下一篇:PHP无限循环获取MySQL中的数据实例代码

    相关文章

    最新文章