当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ctype_lower()用法及代码示例


ctype_lower()函数是PHP中的内置函数,用于检查字符串中给定的字符是否为小写。

用法:

bool ctype_lower( string $text )

参数:此函数接受单个参数$text,该参数保存需要测试的字符串。



返回值:如果字符串的所有字符在当前语言环境中均为小写字符,则此函数返回TRUE。

以下示例程序旨在说明PHP中的ctype_lower()函数:

程序1:

<?php  
  
// PHP program to check the string contains 
// all lower case characters or not 
$strings = array('gfg123', 'geeksforgeeks', 'GfG');  
  
// Loop to check the above three strings 
foreach ($strings as $testcase) {  
    if (ctype_lower($testcase)) {  
        echo "Yes\n";  
    } else {  
        echo "No\n";  
    }  
}  
?> 
输出:
No
Yes
No

程序2:

<?php 
  
// Declare a string 
$str = "GeeksforGeeks";  
  
$n = strlen($str);  
  
$count = 0; 
  
for($i = 0; $i < $n; $i++) { 
    if(ctype_lower($str[$i])) { 
        $count++; 
    } 
} 
  
echo "Totla number of lower case "
     . "character in string:"
     . $count; 
?>
输出:
Totla number of lower case character in string:11

参考: https://www.php.net/manual/en/function.ctype-lower.php




相关用法


注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 PHP | ctype_lower() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。