PHP program to decapitalize the first letter of the string and then adds it with rest of the string.

bookmark

<?php
//Licence: https://bit.ly/2CFA5XY

function decapitalize($string, $upperRest = false)
{
    return lcfirst($upperRest ? strtoupper($string) : $string);
}
print_r(decapitalize('Python'));

?>


Output:

python