The strtolower function converts a string to lowercase.

    
    $text = "Hello World!";

    $textLowercase = strtolower($text);

    echo $textLowercase;
    // hello world