= 4.0.4, PHP 5, PHP 7, PHP 8)ctype_alpha — 做純字符檢測說明ctype_alpha(string $text): bool查看提供的string,text里面的所有字符是否只包含字符。 在標(biāo)準(zhǔn)的 C 語言環(huán)境下,字母僅僅">
(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
ctype_alpha — 做純字符檢測
$text
): bool
查看提供的string,text
里面的所有字符是否只包含字符。
在標(biāo)準(zhǔn)的 C
語言環(huán)境下,字母僅僅是指
[A-Za-z]
, ctype_alpha() 等同于
(ctype_upper($text) || ctype_lower($text))
如果 text
是簡單的單個(gè)字符串還好,但是在其他語言中有些字母被認(rèn)為既不是大寫也不是小寫。
text
被測試的字符串。
如果在當(dāng)前語言環(huán)境中 text
里的每個(gè)字符都是一個(gè)字母,那么就返回true
,反之則返回false
。
示例 #1 一個(gè) ctype_alpha() 例子(使用默認(rèn)的語言環(huán)境)
<?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";
}
}
?>
以上例程會(huì)輸出:
The string KjgWZC consists of all letters. The string arf12 does not consist of all letters.
注意:
如果給出一個(gè) -128 到 255 之間(含)的int, 將會(huì)被解釋為該值對應(yīng)的ASCII字符 (負(fù)值將加上 256 以支持?jǐn)U展ASCII字符). 其它整數(shù)將會(huì)被解釋為該值對應(yīng)的十進(jìn)制字符串.