Definition of ucwords() function
This function is used for converting the first character of each word in a string to uppercase.
Syntax of ucwords() function:
ucwords(string)
string is compulsory paramere
You can see below example of ucwords() function in php.
<?php
//here call ucwords() for cconverting string
echo ucwords("well done");
?>
output will come of above example
Well Done
0 Comment(s)