Answers for "capatilize each first word 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 "capatilize each first word php"

Browse Popular Code Answers by Language