In PHP, string-related functions are most popular and widely used while programming. Among them, some set predefined string functions are used for working with string cases.
These functions are used to convert the string case from one another, and also, used to specify a particular string with camel case representation. Such kind of PHP functions is listed below.
<?php
$str = "welcome to PHPPOT";
// Output: WELCOME TO PHPPOT
echo $uppercase = strtoupper($str);
// Output: welcome to phppot
echo $lowercase = strtolower($str);
// Output: Welcome to PHPPOT
echo $uppercaseFirst = ucfirst($str);
// Output: Welcome To PHPPOT
echo $uppercaseWord = ucwords($str);
?>