php capitalise first letter code example
Example 1: php uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
$string = strtoupper($string);
Example 2: string first letter uppercase php
<?php
$foo = 'hello world!';
$foo = ucfirst($foo);
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);
$bar = ucfirst(strtolower($bar));
?>
Example 3: ucfirst() php
<?php
$foo = 'hello world!';
$foo = ucfirst($foo);
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);
$bar = ucfirst(strtolower($bar));
?>
// string manipulation function
Example 4: first character uppercase php
ucwords("hello world");
ucfirst("hello world");
Example 5: php uppercase first letter
ucfirst($myword);
Example 6: first letter capital of every word in php
$clientname = "ankur prajapati";
ucwords($clientname);