FuzzyWuzzy

Fuzzy string matching for PHP, based on the python library of the same name. https://github.com/wyndow/fuzzywuzzy Requirements Installation Using Composer Usage use FuzzyWuzzy\Fuzz; use FuzzyWuzzy\Process; $fuzz = new Fuzz(); $process = new Process($fuzz); // $fuzz is optional here, and can be omitted. Simple Ratio >>> $fuzz->ratio(‘this is a test’, ‘this is a test!’) => 96 Partial Ratio >>> $fuzz->partialRatio(‘this … Read more