PhpTransliteration::$fixTransliterateForRemoveDiacritics
Special characters for ::removeDiacritics().
Characters which have accented variants but their base character transliterates to more than one ASCII character require special treatment: we want to remove their accent and use the un- transliterated base character.
Type: string[]
File
-
core/
lib/ Drupal/ Component/ Transliteration/ PhpTransliteration.php, line 73
Class
- PhpTransliteration
- Implements transliteration without using the PECL extensions.
Namespace
Drupal\Component\TransliterationCode
protected $fixTransliterateForRemoveDiacritics = [
'AE' => 'Æ',
'ae' => 'æ',
'ZH' => 'Ʒ',
'zh' => 'ʒ',
];