forked from Restlin/morphology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMorphologicHelper.php
551 lines (510 loc) · 24.5 KB
/
MorphologicHelper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
<?php
namespace restlin\morphology;
use Exception;
/**
* Хелпер по работе с морфологией русского языка
* @version 1.0.0
* @todo добавить проверки на несуществующий падеж во все функции
* @author Ilia Shumilov <restlinru@yandex.ru>
*/
final class MorphologicHelper
{
/**
* путь до исходного файла со словами в формате .txt
*/
const DICT_RAW_PATH = __DIR__ . '/words.txt';
/**
* Массив уникальных слов
* @var string[]
*/
static $words = [];
/**
* @var string sha1 исходного файла словаря
*/
static $words_hash;
/**
* Именительный падеж
*/
const NOMINATIVE = 'nominative';
/**
* родительный падеж
*/
const GENETIVE = 'genetive';
/**
* дательный падеж
*/
const DATIVE = 'dative';
/**
* винительный падеж
*/
const ACCUSATIVE = 'accusative';
/**
* Творительный падеж
*/
const INSTRUMENTAL = 'instrumental';
/**
* Предложный
*/
const PREPOSITIONAL = 'prepositional';
/**
* Мужской род
*/
const MALE = 1;
/**
* Женский род
*/
const FEMALE = 2;
/**
* Пребразует ФИО в именительный падеж
* @param string $fio ФИО
* @return string результат
*/
public static function fioToSimpleForm(string $fio) : string
{
if (preg_match('/ой$/ui', $fio)) { //переписать обратную функцию по всем окончаниям падежей
$fio1 = preg_replace('/ой$/ui', 'а', $fio);
} else {
$fio1 = preg_replace('/(а|у|ого|ую)$/ui', '', $fio);
}
return preg_replace('/^([а-я]\.[а-я]\.)([а-я])/ui', '$1 $2', $fio1); //вставка обязательного пробела
}
/**
* Определяет пол по отчеству
* @param string $patron отчество
* @return int
*/
public static function identSexByPatronymic(string $patron) : int
{
return preg_match('/на$|кызы/ui', $patron) ? self::FEMALE : self::MALE;
}
/**
* Получить окончания имен
* @return Array
*/
private static function nameEnds() : Array
{
return [
self::GENETIVE => ['и', 'и', 'ы', 'я', 'а', 'и'],
self::DATIVE => ['е', 'e', 'е', 'ю', 'у', 'и'],
self::ACCUSATIVE => ['у', 'ю', 'у', 'я', 'а', 'ь'],
self::INSTRUMENTAL => ['ой', 'ей', 'ой', 'ем', 'ом', 'ю'],
self::PREPOSITIONAL => ['е', 'е', 'е', 'е', 'е', 'и']
];
}
/**
* Получить массив нестандартных имен
* @return Array
*/
private static function uniqueNames() : Array
{
return [
'павел' => 'павл',
'лев' => 'льв'
];
}
/**
* Склонение имени
* @param string $name имя
* @param int $sex пол
* @param string $case падеж genetive dative accusative
* @return string
*/
public static function nameCase(string $name, int $sex, string $case) : string
{
$name = mb_convert_case($name, MB_CASE_LOWER, 'UTF-8');
$uniq = self::uniqueNames();
if (isset($uniq[$name])) {
$name = $uniq[$name];
}
$ends = self::nameEnds();
if (preg_match('/[уеыоэию]$/ui', $name)) {
$name = $name;
} elseif (preg_match('/[хгшжчщ]а$/ui', $name)) {
$name = preg_replace("/.$/ui", $ends[$case][0], $name);
} elseif (preg_match('/я$/ui', $name)) {
$name = preg_replace("/.$/ui", $ends[$case][1], $name);
} elseif (preg_match('/ка$/ui', $name)) {
$name = preg_replace("/.$/ui", $ends[$case][0], $name);
} elseif (preg_match('/а$/ui', $name)) {
$name = preg_replace("/.$/ui", $ends[$case][2], $name);
} elseif ($sex == self::MALE && preg_match('/[йь]$/ui', $name)) {
$name = preg_replace("/.$/ui", $ends[$case][3], $name);
} elseif ($sex == self::MALE) {
$name .= $ends[$case][4];
} elseif ($sex == self::FEMALE && preg_match('/[ь]$/ui', $name)) {
$name = preg_replace("/.$/ui", $ends[$case][5], $name);
}
return mb_convert_case($name, MB_CASE_TITLE, 'UTF-8'); //@todo это не функция морфологии а почему мы это делаем здесь???
}
/**
* Склонение отвества
* @param string $patron отчество
* @param int $sex пол
* @param string $case падеж genetive dative accusative
* @return string
*/
public static function patronymicCase(string $patron, int $sex, string $case) : string
{
//@todo выделить самостоятельную функцию, если будет необходимость
return self::nameCase($patron, $sex, $case);
}
/**
* Получить окончания фамилий
* @return Array
*/
private static function surnameEnds() : array
{
return [
self::GENETIVE => ['и', 'ы', '$1я', 'ы', 'ого', 'ца', 'я', 'а', 'ой', 'ы', 'ой', 'и'],
self::DATIVE => ['е', 'e', '$1ю', 'е', 'ому', 'цу', 'ю', 'у', 'ой', 'е', 'ой', 'е'],
self::ACCUSATIVE => ['у', 'у', '$1я', 'у', 'ого', 'ца', 'я', 'а', 'ую', 'у', 'у', 'ю'],
self::INSTRUMENTAL => ['ой', 'ой', '$1ем', 'ей', 'ым', 'ом', 'ем', 'ом', 'ой', 'ой', 'ой', 'ей'],
self::PREPOSITIONAL => ['е', 'е', '$1е', 'е', 'е', 'е', 'е', 'е', 'ой', 'е', 'ой', 'е'],
];
}
/**
* Склонение мужской фамилии
* @param string $surname фамилия
* @param Array $ends окончания для соответствующего падежа
* @return string
*/
private static function surnameMaleCase(string $surname, array $ends) : string
{
if (preg_match('/[кгх]а$/ui', $surname)) {
$surname = preg_replace("/.$/ui", $ends[0], $surname); //0
} elseif (preg_match('/[а]$/ui', $surname)) {
$surname = preg_replace("/.$/ui", $ends[1], $surname); //1
} elseif (preg_match('/[цкнгшщзхфвпрлджчсмтб]я$/ui', $surname)) { //Медя Месся и тд
$surname = preg_replace("/.$/ui", $ends[11], $surname);
} elseif (preg_match('/[оихяэе]$/ui', $surname)) {
$surname = $surname;
} elseif (preg_match('/ой$/ui', $surname) && mb_strlen($surname) > 5) { //Жирновой, но не Гой
$surname = preg_replace("/..$/ui", $ends[4], $surname);
} elseif (preg_match('/[уеаоэяю]й$/ui', $surname)) {
$surname = preg_replace("/([уеаоэяю])й$/ui", $ends[2], $surname);
} elseif (preg_match('/ца$/ui', $surname)) {
$surname = preg_replace("/а$/ui", $ends[3], $surname);
} elseif (preg_match('/й$/ui', $surname)) {
$surname = preg_replace("/.{2,2}$/ui", $ends[4], $surname);
} elseif (preg_match('/ец$/ui', $surname)) {
$surname = preg_replace("/ец$/ui", $ends[5], $surname);
} elseif (preg_match('/ь$/ui', $surname)) {
$surname = preg_replace("/ь$/ui", $ends[6], $surname);
} elseif (preg_match('/[ое]к$/ui', $surname) && mb_strlen($surname, 'UTF-8') > 4) { //Шляхтёнок, но не Флёк
$surname = preg_replace("/[ое]к$/ui", 'к' . $ends[7], $surname);
} else {
$surname .= $ends[7];
}
$surname = preg_replace('/(вороб|солов)е([^й])/ui', '$1ь$2', $surname);
return $surname;
}
/**
* Склонение женской фамилии
* @param string $surname фамилия
* @param Array $ends окончания для соответствующего падежа
* @return string
*/
private static function surnameFemaleCase(string $surname, Array $ends) : string
{
if (preg_match('/[бвгдежзийлкмнпорстуфхцчьшщ]$/ui', $surname)) {
$surname = $surname;
} elseif (preg_match('/[цкнгшщзхфвпрлджчсмтб]я$/ui', $surname)) { //Медя Месся и тд
$surname = preg_replace("/.$/ui", $ends[11], $surname);
} elseif (preg_match('/я$/ui', $surname)) { //Бахмутская
$surname = preg_replace("/.{2,2}$/ui", $ends[8], $surname);
} elseif (preg_match('/[пц]а$/ui', $surname)) {
$surname = preg_replace("/а$/ui", $ends[9], $surname);
} elseif (preg_match('/[ткб]а$/ui', $surname)) {
$surname = $surname;
} else {
$surname = preg_replace("/.$/ui", $ends[10], $surname);
}
return $surname;
}
/**
* Склонение фамилии
* @param string $surname фамилия
* @param int $sex пол
* @param string $case падеж genetive dative accusative
* @return string
*/
public static function surnameCase(string $surname, int $sex, string $case) : string
{
$ends = self::surnameEnds();
if ($sex == self::MALE) {
$surname = self::surnameMaleCase($surname, $ends[$case]);
} else {
$surname = self::surnameFemaleCase($surname, $ends[$case]);
}
return mb_convert_case($surname, MB_CASE_TITLE, 'UTF-8'); //@todo это не функция морфологии а почему мы это делаем здесь???
}
/**
* получить массив окончаний должностей
* @return array
*/
private static function profEnds() : array
{
return [
self::GENETIVE => ['ого', 'его', 'а', 'я', 'ого'],
self::DATIVE => ['ому', 'ему', 'у', 'ю', 'ому'],
self::ACCUSATIVE => ['ого', 'его', 'а', 'я', 'ого'],
self::INSTRUMENTAL => ['им', 'им', 'ом', 'ем', 'ым'],
self::PREPOSITIONAL => ['ом', 'ем', 'е', 'е', 'ом'],
];
}
/**
* Возвращает должность в указанном падеже
* @param string $case падеж
* @return string
*/
public static function profCase(string $prof, string $case) : string
{
$ends = self::profEnds();
$prof = trim($prof) . ' ';
$prof1 = preg_replace('/(ск)ий /ui', "$1{$ends[$case][0]} ", $prof);
$prof2 = preg_replace('/([чшщ])ий /ui', "$1{$ends[$case][1]} ", $prof1);
$prof3 = preg_replace('/ый /ui', "{$ends[$case][4]} ", $prof2);
$prof4 = preg_replace('/([аиео]р|ист|ик|[ае]нт|ог|юрисконсульт|ч|вед|ен)([ \-])/ui', "$1{$ends[$case][2]}$2", $prof3);
$prof5 = preg_replace('/(ел|ар)ь([ \-])/ui', "$1{$ends[$case][3]}$2", $prof4);
return trim($prof5);
}
/**
* возвращает должность в базовую форму
* @param string $prof должность
* @return string
*/
public static function profToSimpleForm(string $prof) : string
{
$prof1 = preg_replace('/([внт])(ый|ому|ого)\b/ui', '$1ый', $prof);
$prof2 = preg_replace('/([кчшщ])(ий|ему|ому|его|ого)\b/ui', '$1ий', $prof1);
$prof3 = preg_replace('/(тел)(ь|я|ю)?/ui', '$1ь', $prof2);
$prof4 = preg_replace('/([мнртчщ]ик)(а|у)?/ui', '$1', $prof3);
$prof5 = preg_replace('/(ор|ер|ог)(а|у)?\b/ui', '$1', $prof4);
return $prof5;
}
/**
* получить массив окончаний слов
* @return array
*/
private static function wordEnds() : array
{
return [
self::GENETIVE => ['ого', 'его', 'а', 'я', 'ой', 'и', 'я', 'ка', 'а', 'ы', 'ей', 'и', 'и', 'я'],
self::DATIVE => ['ому', 'ему', 'у', 'ю', 'ой', 'е', 'ю', 'ку', 'у', 'е', 'ей', 'и', 'и', 'е'],
self::ACCUSATIVE => ['ого', 'его', 'а', 'я', 'ую', 'у', 'е', 'ок', '', 'у', 'ую', 'ю', 'ь', 'я'],
self::INSTRUMENTAL => ['им', 'им', 'ом', 'ем', 'ой', 'ой', 'ем', 'ком', 'ом', 'ой', 'ей', 'ей', 'ью', 'ем'],
self::PREPOSITIONAL => ['ом', 'ом', 'е', 'е', 'ой', 'е', 'и', 'ке', 'е', 'е', 'ей', 'и', 'и', 'е'],
];
}
/**
* Возвращает слово в указанном падеже
* @param string $word слово
* @param string $case падеж
* @return string
*/
public static function wordCase(string $word, string $case): string
{
$wordLow = mb_strtolower($word, 'UTF-8');
$ends = self::wordEnds();
$manWords = ['голубь', 'восемь', 'гусь', 'карась', 'лось' , 'лосось' , 'вождь' , 'гвоздь' , 'господь', 'груздь', 'дождь', 'желудь', 'лебедь', 'медведь', 'витязь', 'князь', 'ферзь'];
if(in_array($wordLow, ['устав', 'анклав', 'нрав', 'рукав', 'сплав', 'удав', 'сустав', 'состав'])) {
return $word . $ends[$case][8];
} elseif (in_array($wordLow, ['по', 'о', 'об', 'над', 'пальто', 'метро', 'кофе', 'бюро', 'на', 'постоянно', 'регулярно', 'вечно'])) {
return $word;
} elseif (preg_match('/ский|ое$/ui', $word)) {
return preg_replace('/..$/ui', $ends[$case][0], $word);
} elseif (preg_match('/[чшщ]ий$/ui', $word)) {
return preg_replace('/..$/ui', $ends[$case][1], $word);
} elseif (preg_match('/ый$/ui', $word)) {
return preg_replace('/..$/ui', $ends[$case][0], $word); //проверить в рабочем варианте
} elseif (preg_match('/([аиеёот]р|ист|ик|[ае]нт|ог|юрисконсульт|ч|вед|аз|ен)$/ui', $word)) {
return $word . $ends[$case][2];
} elseif (preg_match('/(ел|ар)ь$/ui', $word)) {
return preg_replace('/.$/ui', $ends[$case][3], $word);
} elseif (preg_match('/[жчщш][ая]я$/ui', $word)) {
return preg_replace('/..$/ui', $ends[$case][10], $word);
} elseif (preg_match('/[ая]я$/ui', $word)) {
return preg_replace('/..$/ui', $ends[$case][4], $word);
} elseif (preg_match('/[гжкчхшщ]а$/ui', $word)) {
return preg_replace('/.$/ui', $ends[$case][5], $word);
} elseif (preg_match('/[цнзвпрлдсмтб]а$/ui', $word)) {
return preg_replace('/.$/ui', $ends[$case][9], $word);
} elseif (preg_match('/ия$/ui', $word)) {
return preg_replace('/.$/ui', $ends[$case][11], $word);
} elseif(in_array($wordLow, $manWords)) { //слова мужского рода на гласную и мягкий знак
return preg_replace('/.$/ui', $ends[$case][13], $word);
} elseif (preg_match('/[твпжчщшфбмсдз]ь$/ui', $word)) { //женский род, непонятно что делать со словам на [лрн]ь - там роды спутаны
return preg_replace('/.$/ui', $ends[$case][12], $word);
} elseif (preg_match('/ние$/ui', $word)) {
return preg_replace('/.$/ui', $ends[$case][6], $word);
} elseif (preg_match('/ок$/ui', $word) && mb_strlen($word, 'UTF-8') > 4) {
return preg_replace('/..$/ui', $ends[$case][7], $word);
} elseif (preg_match('/[ое][бвгдлнх]$/ui', $word)) { //но не бармен
return $word . $ends[$case][8];
} elseif (preg_match('/[цкнгшщзхфвпрлджчсмтб]о$/ui', $word)) { //общество
return preg_replace('/.$/ui', $ends[$case][8], $word);
} else {
return $word;
}
}
private static function getPathForTmpFile(): string {
return sys_get_temp_dir().DIRECTORY_SEPARATOR.'restlin-words.php';
}
/**
* Загрузить словарь в $words
*/
private static function loadWords()
{
if (self::$words) {
return true;
}
$path = self::getPathForTmpFile();
if (file_exists($path)) {
list(self::$words_hash, self::$words) = require $path;
}
if (self::$words_hash !== sha1_file(self::DICT_RAW_PATH)) {
self::readWords();
self::writeWords();
self::$words_hash = sha1_file(self::DICT_RAW_PATH);
}
}
/**
* Загрузка слов в массив $words из исходного словаря
*/
private static function readWords()
{
if (file_exists(self::DICT_RAW_PATH) && ($filein = @fopen(self::DICT_RAW_PATH, 'r'))) {
while (($word = fgets($filein)) !== false) {
self::$words += self::getConnectedWords($word);
}
fclose($filein);
} else {
throw new Exception('Не могу найти или открыть исходный файл словаря');
}
}
/**
* Запись слов в новый словарь
*/
private static function writeWords()
{
$content = "<?php\nreturn ";
$content .= var_export([sha1_file(self::DICT_RAW_PATH), self::$words], true);
$content .= ";\n";
$result = file_put_contents(self::getPathForTmpFile(), $content);
if ($result === false) {
throw new Exception('Не могу создать или открыть конечный файл словаря');
}
}
/**
* Родственные слова для слова из словаря
* @param string $word
* @return string[]
*/
public static function getConnectedWords(string $word): array
{
$words = [];
$base = str_replace('ё', 'е', trim($word));
$words[$base] = true;
if (preg_match('/[иы]й$/ui', $base)) { //именительные падежи для женского и среднего рода
$female = preg_replace('/..$/ui', 'ая', $base);
$words[$female] = true;
$female2 = preg_replace('/..$/ui', 'яя', $base);
$words[$female2] = true;
$middle = preg_replace('/..$/ui', 'ое', $base);
$words[$middle] = true;
}
return $words;
}
/**
* Является ли слово базовой формой слова
* @param string $word слово
* @return bool
*/
private static function isWordMainCase(string $word): bool
{
$base = str_replace('ё', 'е', mb_strtolower($word, 'utf-8'));
return !self::$words || key_exists($base, self::$words);
}
/**
* Преобразовать словосочетание из именительного падежа в переданный
* @param string $collocation словосочетание
* @param string $case итоговый падеж
* @param bool $checkDict проверка в словаре
* @return string
*/
public static function collocationCase(string $collocation, string $case, bool $checkDict = true): string
{
self::loadWords();
return preg_replace_callback('/\w+/ui', function($search) use ($case, $checkDict)
{
if ($checkDict && !self::isWordMainCase($search[0])) {
return $search[0];
}
return self::wordCase($search[0], $case);
}, $collocation);
}
/**
* получить массив окончаний слов для множественного числа
* @return array
*/
private static function wordManyEnds() : array
{
return [
self::NOMINATIVE => [0 => 'ие', 1 => 'ие', 2 => 'ы', 3 => 'и', 4 => 'ые', 5 => 'и', 6 => 'я', 7 => 'и', 8 => 'а', 9 => 'ы', 10 => 'ие', 11 => 'и', 12 => 'и'],
self::GENETIVE => [0 => 'их', 1 => 'их', 2 => 'ов', 3 => 'ей', 4 => 'ых', 5 => '', 6 => 'й', 7 => 'ков', 8 => 'ов', 9 => '', 10 => 'их', 11 => 'й', 12 => 'ов'],
self::DATIVE => [0 => 'им', 1 => 'им', 2 => 'ам', 3 => 'ям', 4 => 'ым', 5 => 'ам', 6 => 'ям', 7 => 'кам', 8 => 'ам', 9 => 'ам', 10 => 'им', 11 => 'ям', 12 => 'ам'],
self::ACCUSATIVE => [0 => 'их', 1 => 'их', 2 => 'ов', 3 => 'ей', 4 => 'ых', 5 => 'и', 6 => 'я', 7 => 'ки', 8 => 'ов', 9 => 'ы', 10 => 'их', 11 => 'и', 12 => 'ов'],
self::INSTRUMENTAL => [0 => 'ими', 1 => 'ими', 2 => 'ами', 3 => 'ями', 4 => 'ыми', 5 => 'ами', 6 => 'ями', 7 => 'ками', 8 => 'ами', 9 => 'ами', 10 => 'ими', 11 => 'ями', 12 => 'ами'],
self::PREPOSITIONAL => [0 => 'их', 1 => 'их', 2 => 'ах', 3 => 'ях', 4 => 'ыми', 5 => 'ах', 6 => 'ях', 7 => 'ках', 8 => 'ах', 9 => 'ах', 10 => 'их', 11 => 'ях', 12 => 'ах'],
];
}
/**
* Возвращает слово во множественном числе указанном падеже
* @param string $word слово
* @param string $case падеж
* @return string
*/
public static function wordManyCase(string $word, string $case): string
{
$ends = self::wordManyEnds();
if (in_array(mb_strtolower($word, 'UTF-8'), ['по', 'о', 'об', 'над', 'пальто', 'метро', 'кофе', 'бюро', 'на', 'постоянно', 'регулярно', 'вечно'])) {
return $word;
} elseif (preg_match('/ский|ое$/ui', $word)) { //скандинавский
return preg_replace('/..$/ui', $ends[$case][0], $word);
} elseif (preg_match('/[чшщ]ий$/ui', $word)) { //ведущий
return preg_replace('/..$/ui', $ends[$case][1], $word);
} elseif (preg_match('/ый$/ui', $word)) { //быстрый
return preg_replace('/..$/ui', $ends[$case][0], $word); //проверить в рабочем варианте
} elseif (preg_match('/([аиеёот]р|ист|[ае]нт|ог|юрисконсульт|ч|вед|аз|ен)$/ui', $word)) { //документовед
return $word . $ends[$case][2];
} elseif (preg_match('/(ик)$/ui', $word)) { //котик
return $word . $ends[$case][12];
} elseif (preg_match('/(ел|ар)ь$/ui', $word)) { //слесарь
return preg_replace('/.$/ui', $ends[$case][3], $word);
} elseif (preg_match('/[жчщш][ая]я$/ui', $word)) { //ведущая
return preg_replace('/..$/ui', $ends[$case][10], $word);
} elseif (preg_match('/[ая]я$/ui', $word)) { //научная
return preg_replace('/..$/ui', $ends[$case][4], $word);
} elseif (preg_match('/[гжкчхшщ]а$/ui', $word)) { //берлога
$result = preg_replace('/.$/ui', $ends[$case][5], $word);
if(preg_match('/[цкнгшщзфвпрлджчсмтб]к$/ui', $result)) {
return preg_replace('/(.)$/ui', 'е$1', $result);
}
return $result;
} elseif (preg_match('/[цнзвпрлдсмтб]а$/ui', $word)) { //дамба
return preg_replace('/.$/ui', $ends[$case][9], $word);
} elseif (preg_match('/ия$/ui', $word)) { //история
return preg_replace('/.$/ui', $ends[$case][11], $word);
} elseif (preg_match('/ние$/ui', $word)) { //растение
return preg_replace('/.$/ui', $ends[$case][6], $word);
} elseif (preg_match('/ок$/ui', $word) && mb_strlen($word, 'UTF-8') > 4) { //участок
return preg_replace('/..$/ui', $ends[$case][7], $word);
} elseif (preg_match('/[ое][бвгдлнх]$/ui', $word)) { //педагог но не бармен
return $word . $ends[$case][8];
} elseif (preg_match('/[цкнгшщзхфвпрлджчсмтб]о$/ui', $word)) { //общество
return preg_replace('/.$/ui', $ends[$case][8], $word);
} else {
return $word;
}
}
}