php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #75108 mb_convert_case lacks ucfirst() mode
Submitted: 2017-08-23 10:12 UTC Modified: 2017-08-24 17:42 UTC
Votes:1
Avg. Score:4.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: chat dot noir at arcor dot de Assigned:
Status: Open Package: mbstring related
PHP Version: 7.0.22 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
15 - 10 = ?
Subscribe to this entry?

 
 [2017-08-23 10:12 UTC] chat dot noir at arcor dot de
Description:
------------
Three of four ASCII case conversion functions have equivalent modes of mb_convert_case():

1. strtoupper -> MB_CASE_UPPER
2. strtolower -> MB_CASE_LOWER
3. ucwords    -> MB_CASE_TITLE
4. ucfirst    -> ???

What's with the fourth? Would come in handy when you use some dynamic text at the beginning of a sentence.

Test script:
---------------
/* example by info at yasarnet dot com */
function capitalize($str, $encoding = 'UTF-8') {
    return mb_strtoupper(mb_substr($str, 0, 1, $encoding), $encoding) . mb_strtolower(mb_substr($str, 1, mb_strlen($str), $encoding), $encoding);
}


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-08-24 17:42 UTC] kalle@php.net
If added, it might also make sense to implement lcfirst()
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 22:01:28 2024 UTC