(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.