Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jifei/Pinyin
一个简单好用的PHP汉字转拼音类,支持获取汉字的拼音以及拼音的缩写,能准确匹配6千多个汉字。
https://github.com/jifei/Pinyin
Last synced: 10 days ago
JSON representation
一个简单好用的PHP汉字转拼音类,支持获取汉字的拼音以及拼音的缩写,能准确匹配6千多个汉字。
- Host: GitHub
- URL: https://github.com/jifei/Pinyin
- Owner: jifei
- Created: 2015-06-25T06:25:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-04-10T05:35:35.000Z (over 2 years ago)
- Last Synced: 2024-07-31T12:07:58.457Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 41 KB
- Stars: 326
- Watchers: 14
- Forks: 135
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- favorite-link - 最好用的 PHP 汉字转拼音类,支持获取汉字的拼音以及拼音的缩写,能准确匹配 6 千多个汉字。
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');//获取拼音缩写
```