Answers for "ucwords"

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
6

php uppercase each word

$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good
Posted by: Guest on July-30-2019

Browse Popular Code Answers by Language