Write a PHP script to convert uppercase string to lowercase





    

strtolower():-


The strtolower() function converts a string to lowercase.

 code:-

 <?php
  echo strtolower("HELLO");
   ?>

output:-

hello

Post a Comment

If you have any doubts, Please let me know
Thanks!

Previous Post Next Post