|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-11-24 21:24 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 11:00:01 2025 UTC |
Description: ------------ The first letter after an apostrophe of a possessive or conjugated word converted using MB_CASE_TITLE in mb_convert_case() get's capitalized incorrectly. Reproduce code: --------------- <?php echo mb_convert_case("I'll never believe you couldn't see it!", MB_CASE_TITLE); ?> Expected result: ---------------- I'll Never Believe You Couldn't See It! Actual result: -------------- I'Ll Never Believe You Couldn'T See It!