Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jifei/Pinyin

一个简单好用的PHP汉字转拼音类,支持获取汉字的拼音以及拼音的缩写,能准确匹配6千多个汉字。
https://github.com/jifei/Pinyin

Last synced: 10 days ago
JSON representation

一个简单好用的PHP汉字转拼音类,支持获取汉字的拼音以及拼音的缩写,能准确匹配6千多个汉字。

Awesome Lists containing this project

README

        

# Pinyin
一个简单、准确的PHP中文转拼音的类

支持获取拼音以及拼音的缩写即首字母

支持utf-8、gbk等编码

能准确匹配6千多个常用汉字

单个汉字,一句话,中英文混合都完美支持

## 例子utf-8版
```php
include_once 'Pinyin.php';
echo Pinyin::getPinyin("早上好");//获取拼音
echo Pinyin::getShortPinyin("早上好");//获取拼音缩写
```

## 例子gbk版
```php
include_once 'Pinyin.php';
echo Pinyin::getPinyin("早上好",'gb2312');//获取拼音
echo Pinyin::getShortPinyin("早上好",'gb2312');//获取拼音缩写
```