first letter capital of every word in php
$clientname = "ankur prajapati";
ucwords($clientname);//Ankur Prajapati
ucfirst($clientname);//Ankur Prajapati
$clientname = "ANKUR PRAJAPATI";
ucfirst(strtolower($clientname));//Ankur Prajapati
first letter capital of every word in php
$clientname = "ankur prajapati";
ucwords($clientname);//Ankur Prajapati
ucfirst($clientname);//Ankur Prajapati
$clientname = "ANKUR PRAJAPATI";
ucfirst(strtolower($clientname));//Ankur Prajapati
php words capitalized
/*
This only Capitalizes words in a string that are entirely alphabetic
and other words are made UPPERCASE
Works well if you have a string of words containing a mixture
of English words and part codes etc
*/
$words = explode(" ", $originalString);
$finalString = "";
foreach($words as $word) {
if(ctype_alpha($word)) {
$word = ucfirst(strtolower($word));
}
else {
$word = strtoupper($word);
}
$finalString .= $word." ";
}
echo rtrim($finalString);
php first letter capital each word
echo ucwords("hello world");
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us