Merge pull request #10 from vklimin/patch-3

Update Stemmer.php
This commit is contained in:
Alexander Kiryukhin 2018-01-14 00:26:24 +03:00 committed by GitHub
commit 2cc39b05b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,9 +93,9 @@ class Stemmer
public static function removeEndings(&$word, $regex, $region)
{
$prefix = mb_substr($word, 0, $region, 'UTF-8');
$ending = substr($word, strlen($prefix));
$ending = mb_substr($word, mb_strlen($prefix, 'UTF-8'), null, 'UTF-8');
if (is_array($regex)) {
if (preg_match('/.+[а|я]' . $regex[0] . '/ui', $ending)) {
if (preg_match('/.+[ая]' . $regex[0] . '/ui', $ending)) {
$word = $prefix . preg_replace('/' . $regex[0] . '/ui', '', $ending);
return true;
}