The lcfirst function convert the first character of a string to lowercase.

    
    $word = lcfirst('Hello');

    echo $word;
    // hello