convert to title case

    0

    0

    jvit
    JVIT PHP

    echo convertToTitleCase("title case string");

    // => Title Case String

    Shortcut: title

    /**
    * Convert the given string to title case.
    *
    * @param  string  $value
    * @return string
    */
    function convertToTitleCase($value)
    {
      return mb_convert_case($value, MB_CASE_TITLE, 'UTF-8');
    }
    
    Codiga Logo
    Codiga Hub
    • Rulesets
    • Playground
    • Snippets
    • Cookbooks
    Legal
    • Security
    • Privacy Policy
    • Code Privacy
    • Terms of Service
    soc-2 icon

    We are SOC-2 Compliance Certified

    G2 high performer medal

    Codiga – All rights reserved 2022.