Write a PHP script to convert lowercase string to uppercase





      

strtoupper():-


The strtoupper() function converts a string to uppercase.

code:-

<?php
echo strtoupper("hello");
?>

output:-

HELLO

Post a Comment

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

Previous Post Next Post