ctype_lower

(PHP 4 >= 4.0.4, PHP 5)

ctype_lower -- 小文字かどうかを調べる

説明

bool ctype_lower ( string c)

text の中の全ての文字がカレントのロケールにおける 小文字の場合に TRUEを返します。

例 1. ctype_lower() の例 (デフォルトのロケールを使用)

<?php
$strings
= array('aac123', 'qiutoas', 'QASsdks');
foreach (
$strings as $testcase) {
    if (
ctype_lower($testcase)) {
        echo
"The string $testcase consists of all lowercase letters.\n";
    } else {
        echo
"The string $testcase does not consist of all lowercase letters.\n";
    }
}
?>

この例の出力は以下のようになります。

The string aac123 does not consist of all lowercase letters.
The string qiutoas consists of all lowercase letters.
The string QASsdks does not consist of all lowercase letters.

ctype_alpha(), ctype_upper(), setlocale()も参照して下さい。