查詢

ctype_lower()函式—用法及示例

「 檢查給定的字串中的字元是否都是小寫字母 」


函式名稱: 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.",因為字串中包含了非小寫字母的字元。

補充糾錯
上一個函式: ctype_graph()函式
下一個函式: ctype_print()函式
熱門PHP函式
分享連結