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