Answers for "php check for uppercase letters in string"

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 "php check for uppercase letters in string"

Browse Popular Code Answers by Language