HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

lcfirst

Description

The lcfirst of String for PHP makes the first character of a string lowercase.

Syntax

lcfirst(
    string $string
): string

Parameters

string

The input string.

Return

Returns the modified string.

Examples

1 · string

<?

$string = "CASE";

$return = lcfirst($string);

echo $return;
cASE