kmvan / pinyin-service
INN STUDIO pinyin service.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=7.4.0
- overtrue/pinyin: ~4.0
This package is auto-updated.
Last update: 2025-03-28 20:49:56 UTC
README
- GPL-3.0
Install
$ composer require kmvan/pinyin-service
Usage
$ php -S localhost:8000 -t ./
And
curl --header "Content-Type: application/json" \ --request POST \ --data '["你好","我好","大家好"]' \ http://localhost:8000/
// output json { "你好": [ "ni3", "hao3" ], "我好": [ "wo3", "hao3" ], "大家好": [ "da4", "jia1", "hao3" ] }