Try
lcfirst - Make a line of the first character of a lowercase letter
and for PHP <5.3 add this to the global scope:
if (!function_exists('lcfirst')) {
function lcfirst($str)
{
$str = is_string($str) ? $str : '';
if(mb_strlen($str) > 0) {
$str[0] = mb_strtolower($str[0]);
}
return $str;
}
}
strolower ing , PHP- PHP5.3
. , . .