You can use the PHP ucfirst() function to change the first character of a string to uppercase (i.e. capital). Alternatively, you can use the strtolower() function in combination with the ucfirst() function, if you want to make only first letter of the string to uppercase and rest of the string to lowercase. Let's check out an example to understand how it works:
<?php
$str1 = 'the color of the sky is blue.';
echo ucfirst($str1);
echo "<br>";
$str2 = 'the Color of the Sky is Blue.';
echo ucfirst(strtolower($str2));
?>
Use the PHP
ucfirst()functionYou can use the PHP
need an explanation for this answer? contact us directly to get an explanation for this answerucfirst()function to change the first character of a string to uppercase (i.e. capital). Alternatively, you can use thestrtolower()function in combination with theucfirst()function, if you want to make only first letter of the string to uppercase and rest of the string to lowercase. Let's check out an example to understand how it works: