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 0Please Login to Post the answer