Answers for "how to check uppercase in php"

PHP
1

php string to uppercase

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // show: MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
Posted by: Guest on February-09-2021

Code answers related to "how to check uppercase in php"

Browse Popular Code Answers by Language