PHP 中的 ctype_alpha() 函数用于检查给定字符串的所有字符是否为字母。如果所有字符都是字母,则返回 True 否则返回 False。
用法:
ctype_alpha($text)
使用的参数:
- $text:-它是一个强制参数,用于指定字符串。
返回值:
如果字符串的所有字符都是字母,则返回 True,失败时返回 False。
例子:
Input :GeeksforGeeks Output:Yes Explanation:String (GeeksforGeeks) contains only alphabets Input :GFG-GCET-2018 Output:No Explanation:String contains Integer and special characters. Note:Except string ,if you input anything then it will return FALSE.
以下示例程序旨在说明 ctype_alpha() 函数。
节目:1
<?php
// PHP program to check given string is
// all characters -alphabetic
$string = 'GeeksforGeeks';
if ( ctype_alpha($string))
echo "Yes\n";
else
echo "No\n";
?>
输出:
Yes
节目:2驱动代码 ctype_alpha() 函数,其中输入包含整数和特殊字符的字符串数组。
<?php
// PHP program to check given string is
// all characters are alphabetic
$strings = array(
'GFG',
'GFG space',
'@@##-- /',
'789543',
'\n'
);
// Checking above given strings
// by used of ctype_alpha() function .
foreach ($strings as $test) {
if (ctype_alpha($test))
echo "Yes\n";
else
echo "No\n";
}
?>
输出:
Yes No No No No
相关文章: PHP | ctype_alnum()(检查字母数字)
参考:
http://php.net/manual/en/function.ctype-alpha.php
相关用法
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ctype_alpha() (Checks for alphabetic value)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。