|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2016-12-05 18:26 UTC] sjon at hortensius dot net
Description:
------------
Like #73655; this is caused by icu-58. This works fine with icu-57,
Test script:
---------------
print Transliterator::create('de_DE')->transliterate("Donnerlüttchen");
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 21:00:01 2025 UTC |
Thanks for the report. The changes in the transliteration ID handling, same as any other ICU data, are not a PHP responsibility. Use Transliterator::listIds() to find out the suitable values. For a simple variant, I guess what you wanted is $t = Transliterator::create("latin-ascii"); var_dump($t->transliterate("Donnerlüttchen")); Thanks.