ctype_upper
(PHP 4 >= 4.0.4, PHP 5)
ctype_upper -- 大文字かどうか調べる
説明
bool
ctype_upper ( string text)
text の中の全ての文字がカレントのロケールにおける
大文字の場合に TRUEを返します。
例 1. ctype_upper() の例 (デフォルトのロケールを使用)
<?php $strings = array('AKLWC139', 'LMNSDO', 'akwSKWsm'); foreach ($strings as $testcase) { if (ctype_upper($testcase)) { echo "The string $testcase consists of all uppercase letters.\n"; } else { echo "The string $testcase does not consist of all uppercase letters.\n"; } } ?>
|
この例の出力は以下のようになります。
The string AKLWC139 does not consist of all uppercase letters.
The string LMNSDO consists of all uppercase letters.
The string akwSKWsm does not consist of all uppercase letters. |
|
ctype_alpha(), ctype_lower(),
setlocale()も参照して下さい。