-
Notifications
You must be signed in to change notification settings - Fork 0
/
Helper.php
557 lines (503 loc) · 21.1 KB
/
Helper.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
552
553
554
555
556
557
<?php
namespace Vayes\Str;
/*
*---------------------------------------------------------------
* STRING HELPERS
*---------------------------------------------------------------
*
* str_starts($needles, $haystack)
* str_contains($needles, $haystack)
* str_ends($needles, $haystack)
* str_limit($value, $limit = 100, $end = '...') {
* str_snake_case($value, $delimiter = '_')
* str_camel_case($value)
* str_studly_case($value)
* str_slug($title, $separator = '-')
* str_snake_case_force($title, $separator = '_')
* str_slug_force($title, $separator = '-')
* str_json($str = '/', $returnDecoded = true, $asArray = false)
*/
if ( ! function_exists('str_starts')) {
/**
* Determine if a given string starts with a given substring.
*
* @param string|array $needles
* @param string $haystack
* @return bool
*/
function str_starts($needles, $haystack)
{
foreach ((array) $needles as $needle) {
if ($needle != '' && strpos($haystack, $needle) === 0) return true;
}
return false;
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_contains')) {
/**
* Determine if a given string contains a given substring.
*
* @param string|array $needles
* @param string $haystack
* @return bool
*/
function str_contains($needles, $haystack)
{
foreach ((array) $needles as $needle) {
if ($needle != '' && strpos($haystack, $needle) !== false) return true;
}
return false;
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_ends'))
{
/**
* Determine if a given string ends with a given substring.
*
* @param string|array $needles
* @param string $haystack
* @return bool
*/
function str_ends($needles, $haystack)
{
foreach ((array) $needles as $needle) {
if ((string) $needle === substr($haystack, -strlen($needle))) return true;
}
return false;
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_limit')) {
/**
* Limit the number of characters in a string.
*
* @param string $value
* @param int $limit
* @param string $end
* @return string
*/
function str_limit($value, $limit = 100, $end = '...') {
if (mb_strlen($value) <= $limit) return $value;
return rtrim(mb_substr($value, 0, $limit, 'UTF-8')).$end;
}
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
if ( ! function_exists('str_snake_case')) {
/**
* Convert a string to snake case.
*
* @param string $value
* @param string $delimiter
* @return string
*/
function str_snake_case($value, $delimiter = '_')
{
static $snakeCache = [];
$key = $value.$delimiter;
if (isset($snakeCache[$key])) {
return $snakeCache[$key];
}
if ( ! ctype_lower($value)) {
$value = strtolower(preg_replace('/(.)(?=[A-Z])/', '$1'.$delimiter, $value));
}
return $snakeCache[$key] = $value;
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_camel_case')) {
/**
* Convert a value to camel case.
*
* @param string $value
* @return string
*/
function str_camel_case($value)
{
static $camelCache = [];
if (isset($camelCache[$value])) {
return $camelCache[$value];
}
return $camelCache[$value] = lcfirst(__studly($value));
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_studly_case')) {
/**
* Convert a value to studly caps case.
*
* @param string $value
* @return string
*/
function str_studly_case($value)
{
static $studlyCache = [];
$key = $value;
if (isset($studlyCache[$key])) {
return $studlyCache[$key];
}
$value = ucwords(str_replace(array('-', '_'), ' ', $value));
return $studlyCache[$key] = str_replace(' ', '', $value);
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_slug')) {
/**
* Generate a URL friendly "slug" from a given string.
*
* UNSUPPORTED LANGUAGES (22)
* Amharic አማርኛ Japanese 日本語 Punjabi ਪੰਜਾਬੀ
* Armenian հայերեն Kannada ಕನ್ನಡ Sinhala සිංහල
* Bengali বাংলা Khmer ខ្មែរ Tamil தமிழ்
* Chinese[S] 中文 Korean 한국어 Telugu తెలుగు
* Chinese[T] 中文 Lao ລາວ Thai ไทย
* Gujarati ગુજરાતી Malayalam മലയാളം Yiddish יידיש
* Hebrew עברי Marathi मराठी
* Hindi हिंदी Nepali नेपाली
*
* SUPPORTED LANGUAGES (82)
* Afrikaans (Afrikaans), Albanian (shqiptar), Arabic (عربى), Azerbaijani (Azərbaycan),
* Basque (Euskal), Belarusian (Беларус), Bosnian (Bosanski), Bulgarian (български),
* Catalan (Català), Cebuano (Cebuana), Chichewa (Chichewa), Corsican (Corsu),
* Crotian (Hrvatski), Czech (čeština), Danish (dansk), Dutch (Nederlands), English (English),
* Esperanto (Esperanto), Estonian (Eestlane), Filipino (Pilipino), Finnish (Suomalainen),
* French (Français), Frisian (Frysk), Galician (Galego), Georgian (ქართული), German (Deutsche),
* Greek (Ελληνικά), Haitian Creole (Kreyòl Ayisyen), Hausa (Hausa), Hawaiian (Ōlelo Hawaiʻi),
* Hmong (Hmong), Hungarian (Magyar), Icelandic (Íslensku), Igbo (Ndi Igbo),
* Indonesian (bahasa Indonesia), Irish (Gaeilge), Italian (Italiano), Javanese (Basa jawa),
* Kazakh (Қазақ), Kurmanji (Kurmancî), Kyrgyz (Кыргызча), Latin (Latine), Latvian (Latvietis),
* Lithuanian (Lietuvis), Luxembourgish (Lëtzebuergesch), Macedonian (Македонски),
* Malagasy (Malagasy), Malay (Melayu), Maltese (Malti), Maori (Maori), Mongolian (Монгол),
* Myanmar [Burmese] (မြန်မာ [ဗမာ]), Norwegian (norsk), Pashto (پښتو), Persian (فارسی),
* Polish (Polskie), Portuguese (Português), Romanian (Română), Russian (русский), Samoan (Samoa),
* Scots Gaelic (Gàidhlig na h-Alba), Serbian (Српски), Sesotho (Sesotho), Shona (Shona),
* Sindhi (سنڌي), Slovak (slovenský), Slovenian (Slovenščina), Somali (Soomaali), Spanish (Español),
* Sundanese (Urang Sunda), Swahili (Kiswahili), Swedish (svenska), Tajik (Точик), Turkish (Türkçe),
* Ukrainian (Українська), Urdu (اردو), Uzbek (O'zbek), Vietnamese (Tiếng Việt), Welsh (Cymraeg),
* Xhosa (Xhosa), Yoruba (Yoruba), Zulu (IsiZulu)
*
* @param string $title
* @param string $separator
* @return string
*/
function str_slug($title, $separator = '-')
{
$title = __ascii($title);
// Convert all dashes/underscores into separator
$flip = $separator == '-' ? '_' : '-';
$title = preg_replace('!['.preg_quote($flip).']+!u', $separator, $title);
// Remove all characters that are not the separator, letters, numbers, or whitespace.
$title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', mb_strtolower($title));
// Replace all separator characters and whitespace by a single separator
$title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
return trim($title, $separator);
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_snake_case_force')) {
/**
* @inheritDoc str_slug
*
* @param string $title
* @param string $separator
* @return string
*/
function str_snake_case_force($title, $separator = '_')
{
return str_slug(str_snake_case($title), $separator);
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_slug_force')) {
/**
* @inheritDoc str_slug
*
* @param string $title
* @param string $separator
* @return string
*/
function str_slug_force($title, $separator = '-')
{
return str_slug(str_snake_case($title), $separator);
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('str_json')) {
/**
* Lints a Json
* @param string $str
* @param boolean $returnDecoded
* @param boolean $asArray
* @return mixed
*/
function str_json($str = '/', $returnDecoded = true, $asArray = false)
{
$ciEnv = function_exists('log_message') ? true : false;
if ((str_starts('{', $str) == true) && (str_ends('}', $str) == true)) {
$json = json_decode($str, $asArray);
switch (json_last_error()) {
case JSON_ERROR_NONE:
return ($returnDecoded) ? $json : true;
break;
case JSON_ERROR_DEPTH:
!$ciEnv || log_message('debug', 'str_json: Maximum stack depth exceeded.');
return false;
break;
case JSON_ERROR_STATE_MISMATCH:
!$ciEnv || log_message('debug', 'str_json: Underflow or the modes mismatch.');
return false;
break;
case JSON_ERROR_CTRL_CHAR:
!$ciEnv || log_message('debug', 'str_json: Unexpected control character found.');
return false;
break;
case JSON_ERROR_SYNTAX:
!$ciEnv || log_message('debug', 'str_json: Syntax error, malformed JSON.');
return false;
break;
case JSON_ERROR_UTF8:
!$ciEnv || log_message('debug', 'str_json: Malformed UTF-8 characters, possibly incorrectly encoded.');
return false;
break;
default:
!$ciEnv || log_message('debug', 'str_json: Unknown error.');
return false;
break;
}
} else {
!$ciEnv || log_message('debug', 'str_json: String does not starts or ends properly.');
return false;
}
}
}
// ------------------------------------------------------------------------
/*
*---------------------------------------------------------------
* HELPER FUNCTIONS FOR THE HELPER FUNCTIONS
*---------------------------------------------------------------
*
* __studly($value)
* __ascii($value)
* __charsArray()
*/
if ( ! function_exists('__studly')) {
/**
* Convert a value to studly caps case.
*
* @param string $value
* @return string
*/
function __studly($value)
{
static $studlyCache = [];
$key = $value;
if (isset($studlyCache[$key])) {
return $studlyCache[$key];
}
$value = ucwords(str_replace(array('-', '_'), ' ', $value));
return $studlyCache[$key] = str_replace(' ', '', $value);
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('__ascii')) {
/**
* Transliterate a UTF-8 value to ASCII.
*
* @param string $value
* @return string
*/
function __ascii($value)
{
foreach (__charsArray() as $key => $val) {
$value = str_replace($val, $key, $value);
}
return preg_replace('/[^\x20-\x7E]/u', '', $value);
}
}
// ------------------------------------------------------------------------
if ( ! function_exists('__charsArray')) {
/**
* Returns the replacements for the ascii method.
*
* Note: Adapted from Stringy\Stringy.
*
* @see https://github.com/danielstjules/Stringy/blob/2.3.1/LICENSE.txt
*
* @return array
*/
function __charsArray()
{
static $charsArray;
if (isset($charsArray)) {
return $charsArray;
}
return $charsArray = [
'0' => ['°', '₀', '۰', '0'],
'1' => ['¹', '₁', '۱', '1'],
'2' => ['²', '₂', '۲', '2'],
'3' => ['³', '₃', '۳', '3'],
'4' => ['⁴', '₄', '۴', '٤', '4'],
'5' => ['⁵', '₅', '۵', '٥', '5'],
'6' => ['⁶', '₆', '۶', '٦', '6'],
'7' => ['⁷', '₇', '۷', '7'],
'8' => ['⁸', '₈', '۸', '8'],
'9' => ['⁹', '₉', '۹', '9'],
'a' => ['à', 'á', 'ả', 'ã', 'ạ', 'ă', 'ắ', 'ằ', 'ẳ', 'ẵ',
'ặ', 'â', 'ấ', 'ầ', 'ẩ', 'ẫ', 'ậ', 'ā', 'ą', 'å',
'α', 'ά', 'ἀ', 'ἁ', 'ἂ', 'ἃ', 'ἄ', 'ἅ', 'ἆ', 'ἇ',
'ᾀ', 'ᾁ', 'ᾂ', 'ᾃ', 'ᾄ', 'ᾅ', 'ᾆ', 'ᾇ', 'ὰ', 'ά',
'ᾰ', 'ᾱ', 'ᾲ', 'ᾳ', 'ᾴ', 'ᾶ', 'ᾷ', 'а', 'أ', 'အ',
'ာ', 'ါ', 'ǻ', 'ǎ', 'ª', 'ა', 'अ', 'ا', 'a', 'ä'],
'b' => ['б', 'β', 'ب', 'ဗ', 'ბ', 'b'],
'c' => ['ç', 'ć', 'č', 'ĉ', 'ċ', 'c'],
'd' => ['ď', 'ð', 'đ', 'ƌ', 'ȡ', 'ɖ', 'ɗ', 'ᵭ', 'ᶁ', 'ᶑ',
'д', 'δ', 'د', 'ض', 'ဍ', 'ဒ', 'დ', 'd'],
'e' => ['é', 'è', 'ẻ', 'ẽ', 'ẹ', 'ê', 'ế', 'ề', 'ể', 'ễ',
'ệ', 'ë', 'ē', 'ę', 'ě', 'ĕ', 'ė', 'ε', 'έ', 'ἐ',
'ἑ', 'ἒ', 'ἓ', 'ἔ', 'ἕ', 'ὲ', 'έ', 'е', 'ё', 'э',
'є', 'ə', 'ဧ', 'ေ', 'ဲ', 'ე', 'ए', 'إ', 'ئ', 'e'],
'f' => ['ф', 'φ', 'ف', 'ƒ', 'ფ', 'f'],
'g' => ['ĝ', 'ğ', 'ġ', 'ģ', 'г', 'ґ', 'γ', 'ဂ', 'გ', 'گ',
'g'],
'h' => ['ĥ', 'ħ', 'η', 'ή', 'ح', 'ه', 'ဟ', 'ှ', 'ჰ', 'h'],
'i' => ['í', 'ì', 'ỉ', 'ĩ', 'ị', 'î', 'ï', 'ī', 'ĭ', 'į',
'ı', 'ι', 'ί', 'ϊ', 'ΐ', 'ἰ', 'ἱ', 'ἲ', 'ἳ', 'ἴ',
'ἵ', 'ἶ', 'ἷ', 'ὶ', 'ί', 'ῐ', 'ῑ', 'ῒ', 'ΐ', 'ῖ',
'ῗ', 'і', 'ї', 'и', 'ဣ', 'ိ', 'ီ', 'ည်', 'ǐ', 'ი',
'इ', 'ی', 'i'],
'j' => ['ĵ', 'ј', 'Ј', 'ჯ', 'ج', 'j'],
'k' => ['ķ', 'ĸ', 'к', 'κ', 'Ķ', 'ق', 'ك', 'က', 'კ', 'ქ',
'ک', 'k'],
'l' => ['ł', 'ľ', 'ĺ', 'ļ', 'ŀ', 'л', 'λ', 'ل', 'လ', 'ლ',
'l'],
'm' => ['м', 'μ', 'م', 'မ', 'მ', 'm'],
'n' => ['ñ', 'ń', 'ň', 'ņ', 'ʼn', 'ŋ', 'ν', 'н', 'ن', 'န',
'ნ', 'n'],
'o' => ['ó', 'ò', 'ỏ', 'õ', 'ọ', 'ô', 'ố', 'ồ', 'ổ', 'ỗ',
'ộ', 'ơ', 'ớ', 'ờ', 'ở', 'ỡ', 'ợ', 'ø', 'ō', 'ő',
'ŏ', 'ο', 'ὀ', 'ὁ', 'ὂ', 'ὃ', 'ὄ', 'ὅ', 'ὸ', 'ό',
'о', 'و', 'θ', 'ို', 'ǒ', 'ǿ', 'º', 'ო', 'ओ', 'o',
'ö'],
'p' => ['п', 'π', 'ပ', 'პ', 'پ', 'p'],
'q' => ['ყ', 'q'],
'r' => ['ŕ', 'ř', 'ŗ', 'р', 'ρ', 'ر', 'რ', 'r'],
's' => ['ś', 'š', 'ş', 'с', 'σ', 'ș', 'ς', 'س', 'ص', 'စ',
'ſ', 'ს', 's'],
't' => ['ť', 'ţ', 'т', 'τ', 'ț', 'ت', 'ط', 'ဋ', 'တ', 'ŧ',
'თ', 'ტ', 't'],
'u' => ['ú', 'ù', 'ủ', 'ũ', 'ụ', 'ư', 'ứ', 'ừ', 'ử', 'ữ',
'ự', 'û', 'ū', 'ů', 'ű', 'ŭ', 'ų', 'µ', 'у', 'ဉ',
'ု', 'ူ', 'ǔ', 'ǖ', 'ǘ', 'ǚ', 'ǜ', 'უ', 'उ', 'u',
'ў', 'ü'],
'v' => ['в', 'ვ', 'ϐ', 'v'],
'w' => ['ŵ', 'ω', 'ώ', 'ဝ', 'ွ', 'w'],
'x' => ['χ', 'ξ', 'x'],
'y' => ['ý', 'ỳ', 'ỷ', 'ỹ', 'ỵ', 'ÿ', 'ŷ', 'й', 'ы', 'υ',
'ϋ', 'ύ', 'ΰ', 'ي', 'ယ', 'y'],
'z' => ['ź', 'ž', 'ż', 'з', 'ζ', 'ز', 'ဇ', 'ზ', 'z'],
'aa' => ['ع', 'आ', 'آ'],
'ae' => ['æ', 'ǽ'],
'ai' => ['ऐ'],
'ch' => ['ч', 'ჩ', 'ჭ', 'چ'],
'dj' => ['ђ', 'đ'],
'dz' => ['џ', 'ძ'],
'ei' => ['ऍ'],
'gh' => ['غ', 'ღ'],
'ii' => ['ई'],
'ij' => ['ij'],
'kh' => ['х', 'خ', 'ხ'],
'lj' => ['љ'],
'nj' => ['њ'],
'oe' => ['œ', 'ؤ'],
'oi' => ['ऑ'],
'oii' => ['ऒ'],
'ps' => ['ψ'],
'sh' => ['ш', 'შ', 'ش'],
'shch' => ['щ'],
'ss' => ['ß'],
'sx' => ['ŝ'],
'th' => ['þ', 'ϑ', 'ث', 'ذ', 'ظ'],
'ts' => ['ц', 'ც', 'წ'],
'uu' => ['ऊ'],
'ya' => ['я'],
'yu' => ['ю'],
'zh' => ['ж', 'ჟ', 'ژ'],
'(c)' => ['©'],
'A' => ['Á', 'À', 'Ả', 'Ã', 'Ạ', 'Ă', 'Ắ', 'Ằ', 'Ẳ', 'Ẵ',
'Ặ', 'Â', 'Ấ', 'Ầ', 'Ẩ', 'Ẫ', 'Ậ', 'Å', 'Ā', 'Ą',
'Α', 'Ά', 'Ἀ', 'Ἁ', 'Ἂ', 'Ἃ', 'Ἄ', 'Ἅ', 'Ἆ', 'Ἇ',
'ᾈ', 'ᾉ', 'ᾊ', 'ᾋ', 'ᾌ', 'ᾍ', 'ᾎ', 'ᾏ', 'Ᾰ', 'Ᾱ',
'Ὰ', 'Ά', 'ᾼ', 'А', 'Ǻ', 'Ǎ', 'A', 'Ä'],
'B' => ['Б', 'Β', 'ब', 'B'],
'C' => ['Ç', 'Ć', 'Č', 'Ĉ', 'Ċ', 'C'],
'D' => ['Ď', 'Ð', 'Đ', 'Ɖ', 'Ɗ', 'Ƌ', 'ᴅ', 'ᴆ', 'Д', 'Δ',
'D'],
'E' => ['É', 'È', 'Ẻ', 'Ẽ', 'Ẹ', 'Ê', 'Ế', 'Ề', 'Ể', 'Ễ',
'Ệ', 'Ë', 'Ē', 'Ę', 'Ě', 'Ĕ', 'Ė', 'Ε', 'Έ', 'Ἐ',
'Ἑ', 'Ἒ', 'Ἓ', 'Ἔ', 'Ἕ', 'Έ', 'Ὲ', 'Е', 'Ё', 'Э',
'Є', 'Ə', 'E'],
'F' => ['Ф', 'Φ', 'F'],
'G' => ['Ğ', 'Ġ', 'Ģ', 'Г', 'Ґ', 'Γ', 'G'],
'H' => ['Η', 'Ή', 'Ħ', 'H'],
'I' => ['Í', 'Ì', 'Ỉ', 'Ĩ', 'Ị', 'Î', 'Ï', 'Ī', 'Ĭ', 'Į',
'İ', 'Ι', 'Ί', 'Ϊ', 'Ἰ', 'Ἱ', 'Ἳ', 'Ἴ', 'Ἵ', 'Ἶ',
'Ἷ', 'Ῐ', 'Ῑ', 'Ὶ', 'Ί', 'И', 'І', 'Ї', 'Ǐ', 'ϒ',
'I'],
'J' => ['J'],
'K' => ['К', 'Κ', 'K'],
'L' => ['Ĺ', 'Ł', 'Л', 'Λ', 'Ļ', 'Ľ', 'Ŀ', 'ल', 'L'],
'M' => ['М', 'Μ', 'M'],
'N' => ['Ń', 'Ñ', 'Ň', 'Ņ', 'Ŋ', 'Н', 'Ν', 'N'],
'O' => ['Ó', 'Ò', 'Ỏ', 'Õ', 'Ọ', 'Ô', 'Ố', 'Ồ', 'Ổ', 'Ỗ',
'Ộ', 'Ơ', 'Ớ', 'Ờ', 'Ở', 'Ỡ', 'Ợ', 'Ø', 'Ō', 'Ő',
'Ŏ', 'Ο', 'Ό', 'Ὀ', 'Ὁ', 'Ὂ', 'Ὃ', 'Ὄ', 'Ὅ', 'Ὸ',
'Ό', 'О', 'Θ', 'Ө', 'Ǒ', 'Ǿ', 'O', 'Ö'],
'P' => ['П', 'Π', 'P'],
'Q' => ['Q'],
'R' => ['Ř', 'Ŕ', 'Р', 'Ρ', 'Ŗ', 'R'],
'S' => ['Ş', 'Ŝ', 'Ș', 'Š', 'Ś', 'С', 'Σ', 'S'],
'T' => ['Ť', 'Ţ', 'Ŧ', 'Ț', 'Т', 'Τ', 'T'],
'U' => ['Ú', 'Ù', 'Ủ', 'Ũ', 'Ụ', 'Ư', 'Ứ', 'Ừ', 'Ử', 'Ữ',
'Ự', 'Û', 'Ū', 'Ů', 'Ű', 'Ŭ', 'Ų', 'У', 'Ǔ', 'Ǖ',
'Ǘ', 'Ǚ', 'Ǜ', 'U', 'Ў', 'Ü'],
'V' => ['В', 'V'],
'W' => ['Ω', 'Ώ', 'Ŵ', 'W'],
'X' => ['Χ', 'Ξ', 'X'],
'Y' => ['Ý', 'Ỳ', 'Ỷ', 'Ỹ', 'Ỵ', 'Ÿ', 'Ῠ', 'Ῡ', 'Ὺ', 'Ύ',
'Ы', 'Й', 'Υ', 'Ϋ', 'Ŷ', 'Y'],
'Z' => ['Ź', 'Ž', 'Ż', 'З', 'Ζ', 'Z'],
'AE' => ['Æ', 'Ǽ'],
'Ch' => ['Ч'],
'Dj' => ['Ђ'],
'Dz' => ['Џ'],
'Gx' => ['Ĝ'],
'Hx' => ['Ĥ'],
'Ij' => ['IJ'],
'Jx' => ['Ĵ'],
'Kh' => ['Х'],
'Lj' => ['Љ'],
'Nj' => ['Њ'],
'Oe' => ['Œ'],
'Ps' => ['Ψ'],
'Sh' => ['Ш'],
'Shch' => ['Щ'],
'Ss' => ['ẞ'],
'Th' => ['Þ'],
'Ts' => ['Ц'],
'Ya' => ['Я'],
'Yu' => ['Ю'],
'Zh' => ['Ж'],
' ' => ["\xC2\xA0", "\xE2\x80\x80", "\xE2\x80\x81",
"\xE2\x80\x82", "\xE2\x80\x83", "\xE2\x80\x84",
"\xE2\x80\x85", "\xE2\x80\x86", "\xE2\x80\x87",
"\xE2\x80\x88", "\xE2\x80\x89", "\xE2\x80\x8A",
"\xE2\x80\xAF", "\xE2\x81\x9F", "\xE3\x80\x80",
"\xEF\xBE\xA0"],
];
}
}