The Cusp of Helix

Intact Case リファレンス
[ucFirst]

(string) ucFirst ($haystack, [$delimiter = '_'])

複合語の最初のトークンの頭文字を大文字に変換します。最初のトークンが頭字語の場合は、そのトークンを StudlyCaps に変換します。

Parameters:

nametypedefaultcaption
$haystackstringString to Convert.
$delimiterstring'_'Delimiter.

Returns:

  • (string) — Capitalized String.

Author:

  • StewEucen

Since:

  • Version 1.0.0

Examples:

use StewEucen\Acts\IntactCase IntactCase::ucFirst('highClass') //=> "HighClass" IntactCase::ucFirst('xml_HTMLRequest') //=> "XML_HTMLRequest"