(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
ctype_lower — 检查是否为小写字符(串)
text
要测试的字符串。
注意:
如果提供了 -128 到 255(含)之间的 整数,它将被解释为单个字符的 ASCII 值(负值将加 256 以允许扩展 ASCII 范围内的字符)。任何其他整数将被解释为包含整数十进制数字的字符串。
示例 #1 一个 ctype_lower() 示例(使用默认区域设置)
<?php
$strings = array('aac123', 'qiutoas', 'QASsdks');
foreach ($strings as $testcase) {
if (ctype_lower($testcase)) {
echo "字符串 $testcase 由所有小写字母组成。\n";
} else {
echo "字符串 $testcase 不完全由小写字母组成。\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.