當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。