felipecwb / soundslike
Sounds Like Text Search
0.1
2016-11-18 17:56 UTC
Requires
- ext-mbstring: *
Requires (Dev)
- phpunit/phpunit: 5.5.*
This package is not auto-updated.
Last update: 2024-10-26 20:26:43 UTC
README
PHP Sounds Like Text Search
composer require "felipecwb/soundslike"
It's looks like that:
use Felipecwb\SoundsLike\TextSearch; $search = new TextSearch([ "São Paulo - SP", "Osasco - SP", "Curitiba - PR", "Curitibanos - SC", "Vitória - ES", "Rio de Janeiro - RJ", "Natal - RN" ]); // find for the best matching text $result = $search->findBestMatch('Sao paulo'); $result->getPhrase(); //São Paulo - SP $result->getAgainst(); //Sao paulo $result->getSimilarity(); //7