Answers for "php str to capitalize with every word"

PHP
7

php uppercase each word

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

capitalize php

<?php
 
$str_first_cap = "hang on, this is first letter capital example!";
 
echo ucwords($str_first_cap);
 
?>
Posted by: Guest on October-28-2021

Code answers related to "php str to capitalize with every word"

Browse Popular Code Answers by Language