Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
$str = "thiS FUNCTION converts The First character OF a string to Uppercase."; $str = strtolower($str); $str = ucfirst($str); echo $str; /* run: This function converts the first character of a string to uppercase. */
$str = "thiS FUNCTION converts The First character OF a string to Uppercase."; $str = ucfirst(strtolower($str)); echo $str; /* run: This function converts the first character of a string to uppercase. */
echo ucfirst(strtolower("thiS FUNCTION converts The First character OF a string to Uppercase.")); /* run: This function converts the first character of a string to uppercase. */