Open In App

PHP | Check if all characters are lower case

Given a string, check if all characters of it are in lowercase.
Examples: 
 

Input  : gfg123
Output : No
Explanation : There are characters
'1', '2' and '3' that are not lower-
case

Input  : geeksforgeeks
Output : Yes
Explanation : The string "geeksforgeeks" 
consists of all lowercase letters.

 

The above problem can be solved using the in-built functions in PHP. We store multiple values in an array and check using the in-built function in php to check whether all the characters are lowercase.
 

We solve the given problem using the in-built functions in PHP and iterate from a given array of strings.We use the following in-built function in PHP: 




<?php
// PHP program to check if a string has all
// lower case characters
 
$strings = array('gfg123', 'geeksforgeeks', 'GfG');
 
// Checking for above three strings one by one.
foreach ($strings as $testcase) {
    if (ctype_lower($testcase)) {
        echo "Yes\n";
    } else {
        echo "No\n";
    }
}
?>

Output : 

No
Yes
No
Article Tags :