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

strtolower

Description

The strtolower of String for PHP make a string lowercase.

Syntax

strtolower(
    string $string
): string

Parameters

string

The input string.

Return

Returns the lowercased string.

Examples

1 · string

<?

$string = "CASE Case case";

$return = strtolower($string);

echo $return;

?>
case case case
HomeMenu