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

strtoupper

Description

The strtoupper of String for PHP make a string uppercase.

Syntax

strtoupper(
    string $string
): string

Parameters

string

The input string.

Return

Returns the uppercased string.

Examples

1 · string

<?

$string = "CASE Case case";

$return = strtoupper($string);

echo $return;

?>
CASE CASE CASE
HomeMenu