xu42 / vic-word
vic word
1.0.1
2019-04-28 10:46 UTC
This package is auto-updated.
Last update: 2024-10-29 00:01:36 UTC
README
中文分词
Installing
require library
composer require xu42/vic-word
Usage
- get word
// dict file path $dictPath = '/tmp/dict.igb'; //长度优先分词 (new VicWord($dictPath))->getWord('聚知台是一个及时沟通工具'); //细切分 (new VicWord($dictPath))->getShortWord('聚知台是一个及时沟通工具'); //自动 这种方法最耗时 (new VicWord($dictPath))->getAutoWord('聚知台是一个及时沟通工具');
- add dict
// dict file path $dictPath = '/tmp/dict.igb'; // 添加词库 (new VicDict($dictPath))->add('中国', n);