Menu

Add Topic

programming

waiting answer July 28, 2021

How to convert a string to lowercase in PHP

Answers
June 10, 2021

The PHP built-in function strtolower() is used to convert a string to uppercase.

Let's check the following example to understand how this function actually works

     <?php
        $string = 'CONVERT TO LOWERCASE';
        echo strtolower($string);
     ?>

OUTPUT

           convert to uppercase

0 0

Please Login to Post the answer

Leave an Answer