Answers for "capitalize every word in a sentence php"

PHP
6

php uppercase each word

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

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);
Posted by: Guest on July-15-2021

Code answers related to "capitalize every word in a sentence php"

Browse Popular Code Answers by Language