The library doesn't take into account charset aliases:
|
if (null === self::$encodings) { |
|
self::$encodings = array_change_key_case( |
|
array_flip(mb_list_encodings()), |
|
CASE_LOWER |
|
); |
|
} |
The library should take into account:
- mb_encoding_aliases
- https://wiki.mozilla.org/I18n:Charset_Aliases
The library doesn't take into account charset aliases:
transcoder/src/MbTranscoder.php
Lines 20 to 25 in e56652f
The library should take into account: