Answers for "make a string's first character of all the words uppercase php"

PHP
3

ucwords in php

<?php
/* Convert the first character of each word to uppercase: */
echo ucwords("hello samy, how are you ?");

//output : Hello Samy, How Are You ?
?>
Posted by: Guest on June-23-2020

Code answers related to "make a string's first character of all the words uppercase php"

Browse Popular Code Answers by Language