ctype_upper (string text)
For intsnace:
$string = "IAMHUNGRYYYYYY";
$result = ctype_upper ($string);
echo $result;
// outputs : 1 (True)
// All characters of "IAMHUNGRYYYYYY" in UPPERCASE
➤ The ctype_lower() function used to check each and every character
of a given string is in lower case or not.