PHP Case Conversion

by Vincy. Last modified on July 2nd, 2022.

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.

    • strtoupper() – To convert string case into uppercase letters.
    • strtolower() – To convert string case into lowercase letters.
    • ucfirst() – To convert the first letter of the string to uppercase letters.
    • ucwords() – To convert the first letter of each word in the string to uppercase letters.

Example: PHP Case Conversion

<?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);
?>

Leave a Reply

Your email address will not be published. Required fields are marked *

↑ Back to Top

Share this page