HH\Lib\Str\capitalize

Requires the Hack Standard Library to be installed.
Facebook Engineer?

This function is available as Str\capitalize() in Facebook's www repository.

Returns the string with the first character capitalized

namespace HH\Lib\Str;

function capitalize(
  string $string,
): string;

If the first character is already capitalized or isn't alphabetic, the string will be unchanged.

Parameters

  • string $string

Returns

  • string