dimadin / serbian-variants
Serbian_Variants
1.0
2015-09-05 19:23 UTC
This package is auto-updated.
Last update: 2024-10-16 07:52:03 UTC
README
Serbian_Variants
is a PHP class used to get all variants of a string in Serbian language. For example, string "Ђоковић" can also be written as "Đoković", "Djoković", "Djokovic", or some variation of those.
Using
Call class with string you want to get variant of.
$object = new Serbian_Variants( 'djokovic' );
You will get all variants in an array with variants
property of object.
$object->variants;
There is also original string in a original_term
property.
$object->original_term;