字符串中的下划线将导致结果为 false,因此您必须先删除它们。
(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
ctype_upper — 检查字符是否为大写字符
text
要测试的字符串。
注意:
如果提供了 -128 到 255(包括)之间的 整数,则将其解释为单个字符的 ASCII 值(负值添加 256 以允许扩展 ASCII 范围内的字符)。任何其他整数都被解释为包含整数十进制数字的字符串。
示例 #1 ctype_upper() 示例(使用默认区域设置)
<?php
$strings = array('AKLWC139', 'LMNSDO', 'akwSKWsm');
foreach ($strings as $testcase) {
if (ctype_upper($testcase)) {
echo "字符串 $testcase 由全大写字母组成。\n";
} else {
echo "字符串 $testcase 不由全大写字母组成。\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.