php capitalize code example
Example 1: php string to uppwe
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
Example 2: php uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
$string = strtoupper($string);
Example 3: string first letter uppercase php
<?php
$foo = 'hello world!';
$foo = ucfirst($foo);
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);
$bar = ucfirst(strtolower($bar));
?>
Example 4: ucfirst() php
<?php
$foo = 'hello world!';
$foo = ucfirst($foo);
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);
$bar = ucfirst(strtolower($bar));
?>
// string manipulation function
Example 5: first character uppercase php
ucwords("hello world");
ucfirst("hello world");
Example 6: ucfirst
<?php
echo ucfirst("hello samy!");
?>