Answers for "capitalize string in php"

PHP
9

php string to uppwe

$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);

echo $uppercase;
// THIS IS LOWER CASE
Posted by: Guest on February-24-2020
11

php uppercase

//string to all uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
//php string to uppercase
$string = strtoupper($string);
// = "STRING WITH MIXED USE OF UPPERCASE AND LOWERCASE"
Posted by: Guest on September-01-2020
11

ucfirst() php

<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
// string manipulation function
Posted by: Guest on February-20-2020
1

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
2

php string to uppercase

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // show: MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
Posted by: Guest on February-09-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