ctype_alpha
(PHP 4 >= 4.0.4, PHP 5, PHP 7)
ctype_alpha - 检查字母字符(s)
描述
bool ctype_alpha ( string $text )
检查提供的字符串中的所有字符text
是否都是字母。在标准C语言环境中,如果$ text只是单个字符,而其他语言的字母只是A-Za-z,而ctype_alpha()等同于(ctype_upper($ text)|| ctype_lower($ text))既不考虑大写也不考虑小写。
参数
text
被测试的字符串。
返回值
如果文本中的每个字符都是来自当前语言环境的字母,则返回TRUE,否则返回FALSE。
例子
示例#1 ctype_alpha()示例(使用默认语言环境)
<?php
$strings = array('KjgWZC', 'arf12');
foreach ($strings as $testcase) {
if (ctype_alpha($testcase)) {
echo "The string $testcase consists of all letters.\n";
} else {
echo "The string $testcase does not consist of all letters.\n";
}
}
?>
上面的例子将输出:
The string KjgWZC consists of all letters.
The string arf12 does not consist of all letters.
注意
注意:如果提供了-128到255之间的整数,则它将被解释为单个字符的ASCII值(为了允许扩展ASCII范围中的字符,负值将被添加256)。任何其他整数都被解释为包含整数的十进制数字的字符串。
扩展内容
- ctype_upper() - 检查大写字符(s)
- ctype_lower() - 检查小写字符(s)
- setlocale() - 设置区域设置信息
← ctype_alnum
ctype_cntrl →
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com