ctype_lower
(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
ctype_lower — 检测小写字符
参数
示例
示例 #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() - 设置区域信息
- IntlChar::islower() - Check if code point is a lowercase letter
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。