|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2019-12-31 09:19 UTC] root at baransel dot dev
Description: ------------ --- From manual page: https://php.net/security.hiding --- as 3v4l.org shows Output for 7.2.0 - 7.2.26 works like expected but Output for 7.3.0 - 7.4.1 does not. mb_strtolower(), cannot undercase the letter [İ], please have a look at the example. Test script: --------------- <?php $program['bolum'] = '3. Sİezon 7. Bölüm'; if(strpos(mb_strtolower($program['bolum']), 'siezon')){ var_dump('Baransel'); } https://3v4l.org/qLP4q Expected result: ---------------- I want the function to return me the undercase for letter [İ] Actual result: -------------- This is the result i'm getting => si̇ezon PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 03:00:02 2025 UTC |
Description: ------------ as 3v4l.org shows Output for 7.2.0 - 7.2.26 works like expected but Output for 7.3.0 - 7.4.1 does not. mb_strtolower(), cannot undercase the letter İ, please have a look at the example. Test script: --------------- <?php $program['bolum'] = '3. Sİezon 7. Bölüm'; var_dump(mb_strtolower($program['bolum'])); if(strpos(mb_strtolower($program['bolum']), 'siezon')){ var_dump('Baransel'); } https://3v4l.org/b6C08 Expected result: ---------------- I want the function to return me the undercase for letter İ e.g. 3. siezon 7. bölüm Actual result: -------------- This is what it outputs 3. si̇ezon 7. bölüm