Capitalize in php code example
Example 1: php uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
$string = strtoupper($string);
Example 2: ucfirst() php
<?php
$foo = 'hello world!';
$foo = ucfirst($foo);
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);
$bar = ucfirst(strtolower($bar));
?>
// string manipulation function
Example 3: php change sting to caps
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
Example 4: ucfirst
<?php
echo ucfirst("hello samy!");
?>
Example 5: php uppercase first letter
ucfirst($myword);
Example 6: Capitalize in php
<?php
$foo = 'bonjour tout le monde!';
$foo = ucfirst($foo);
$bar = 'BONJOUR TOUT LE MONDE!';
$bar = ucfirst($bar);
$bar = ucfirst(strtolower($bar));
?>