|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-10-31 21:03 UTC] requinix@php.net
-Summary: mb_convert_case with lower option have error
+Summary: mb_convert_case with lower option have error with
Turkish capital İ
-Status: Open
+Status: Not a bug
[2019-10-31 21:03 UTC] requinix@php.net
[2019-11-13 15:31 UTC] requinix@php.net
[2019-11-15 10:31 UTC] nikic@php.net
[2019-12-14 13:25 UTC] meminaydin at cmbilisim dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 18 14:00:01 2025 UTC |
Description: ------------ mb_convert_case with lower option have a bug. If the string being converted contains turkish capital i (İ), the output is incorrect. No problem in versions 7.2 and earlier. Test script: --------------- <?php $str = 'yİy'; echo $tmp = mb_convert_case($str, MB_CASE_LOWER, 'UTF-8'), "\n"; echo implode('', unpack('H*', $tmp)), "\n"; Expected result: ---------------- yiy 796979 Actual result: -------------- yi̇y 7969cc8779