Skip to content

Commit d6cd63d

Browse files
committed
Strings::toAscii transliterates я/ю as ya/yu [Closes #203]
1 parent 62b1416 commit d6cd63d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Utils/Strings.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ public static function toAscii(string $s): string
146146
$s = self::pcre('preg_replace', ['#[^\x09\x0A\x0D\x20-\x7E\xA0-\x{2FF}\x{370}-\x{10FFFF}]#u', '', $s]);
147147
// transliteration (by Transliterator and iconv) is not optimal, replace some characters directly
148148
$s = str_replace(
149-
["\u{201E}", "\u{201C}", "\u{201D}", "\u{201A}", "\u{2018}", "\u{2019}", "\u{B0}"], // „ “ ” ‚ ‘ ’ °
150-
['"', '"', '"', "'", "'", "'", '^'],
149+
["\u{201E}", "\u{201C}", "\u{201D}", "\u{201A}", "\u{2018}", "\u{2019}", "\u{B0}", "\u{42F}", "\u{44F}", "\u{42E}", "\u{44E}"], // „ “ ” ‚ ‘ ’ ° Я я Ю ю
150+
['"', '"', '"', "'", "'", "'", '^', 'Ya', 'ya', 'Yu', 'yu'],
151151
$s
152152
);
153153
// temporarily hide these characters to distinguish them from the garbage that iconv creates

tests/Utils/Strings.toAscii().phpt

+3
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@ Assert::exception(function () {
2828
if (class_exists('Transliterator') && \Transliterator::create('Any-Latin; Latin-ASCII')) {
2929
Assert::same('Athena->Moskva', Strings::toAscii("\u{391}\u{3B8}\u{3AE}\u{3BD}\u{3B1}\u{2192}\u{41C}\u{43E}\u{441}\u{43A}\u{432}\u{430}")); // Αθήνα→Москва
3030
}
31+
32+
33+
Assert::same('Ya ya Yu yu', Strings::toAscii("\u{42F} \u{44F} \u{42E} \u{44E}")); // Я я Ю ю

0 commit comments

Comments
 (0)