Answers for "Enlarge the first letter of a word in php"

PHP
2

ucfirst

<?php
/* Convert the first character of "hello" to uppercase:  */
echo ucfirst("hello samy!");

//output : Hello samy!
?>
Posted by: Guest on June-23-2020

Code answers related to "Enlarge the first letter of a word in php"

Browse Popular Code Answers by Language