Answers for "php words capitalized"

PHP
0

Capitalize in php

<?php
$foo = 'bonjour tout le monde!';
$foo = ucfirst($foo);             // Bonjour tout le monde!

$bar = 'BONJOUR TOUT LE MONDE!';
$bar = ucfirst($bar);             // BONJOUR TOUT LE MONDE!
$bar = ucfirst(strtolower($bar)); // Bonjour tout le monde!
?>
Posted by: Guest on June-12-2021
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

Browse Popular Code Answers by Language