vladis84 / text-compare
描述文本
0.0.1
2019-01-15 15:01 UTC
Requires
- php: >=7.1
- ext-mbstring: *
Requires (Dev)
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2024-09-24 05:42:44 UTC
README
用于通过不同算法比较字符串的库
使用示例
$comparison = new Comparison(); $comparison ->addFilter(new SpaceFilter) ->addDriver(new TanimotoDriver) ; $result = $comparison->compare('Hello', [' hello ', 'HEL']);
结果
$result = [ 'tanimoto' => [ ['percent' => ***, 'needle' => 'Hello', 'haystack' => ' hello '], ['percent' => ***, 'needle' => 'Hello', 'haystack' => 'HEL'], ], ];