函式名稱: ctype_lower()
函式描述:檢查給定的字串中的字元是否都是小寫字母。
適用版本:自 PHP 4 起可用。
用法:
bool ctype_lower ( string $text )
引數:
$text
:要檢查的字串。
返回值:
- 如果
$text
中的所有字元都是小寫字母,則返回true
,否則返回false
。
示例:
$text = "hello";
if (ctype_lower($text)) {
echo "All characters in the string are lowercase.";
} else {
echo "String contains characters other than lowercase.";
}
輸出:
All characters in the string are lowercase.
在上述示例中,我們使用 ctype_lower()
函式來檢查字串 $text
中的字元是否都是小寫字母。因為字串 "hello" 中的所有字元都是小寫字母,所以輸出顯示所有字元都是小寫字母。如果我們將字串更改為 "Hello",那麼函式的輸出將會是 "String contains characters other than lowercase.",因為字串中包含了非小寫字母的字元。