|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-03-19 12:40 UTC] pajoye@php.net
-Status: Open
+Status: Bogus
[2011-03-19 12:40 UTC] pajoye@php.net
[2011-03-19 12:58 UTC] sms at inbox dot ru
[2011-03-19 13:04 UTC] pajoye@php.net
-Status: Bogus
+Status: Feedback
[2011-03-19 13:04 UTC] pajoye@php.net
[2011-03-19 13:33 UTC] sms at inbox dot ru
-Status: Feedback
+Status: Open
[2011-03-19 13:33 UTC] sms at inbox dot ru
[2011-03-19 13:39 UTC] pajoye@php.net
-Status: Open
+Status: Feedback
[2011-03-19 13:39 UTC] pajoye@php.net
[2011-03-19 13:46 UTC] sms at inbox dot ru
-Status: Feedback
+Status: Open
[2011-03-19 13:46 UTC] sms at inbox dot ru
[2011-03-19 13:49 UTC] pajoye@php.net
-Status: Open
+Status: Bogus
[2011-03-19 13:49 UTC] pajoye@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 07:00:02 2025 UTC |
Description: ------------ At least two string functions fail with cyrillic characters (cp1251) as of version 5.3.6: strtolower() and strtoupper(). Test script: --------------- setlocale(LC_ALL, 'ru_RU'); echo 'strtoupper: '.strtoupper('test тест').'<br>strtolower: '.strtolower('TEST ТЕСТ'); Expected result: ---------------- strtoupper: TEST ТЕСТ strtolower: test тест Actual result: -------------- strtoupper: TEST тест strtolower: test ТЕСТ