ctype_alpha

(PHP 4 >= 4.0.4, PHP 5, PHP 7)

ctype_alpha�����ַ����

˵��

ctype_alpha ( string $text ) : bool

�鿴�ṩ��string��text����������ַ��Ƿ�ֻ�����ַ��� �ڱ�׼�� C ���Ի����£���ĸ������ָ [A-Za-z] �� ctype_alpha() ��ͬ�� (ctype_upper($text) || ctype_lower($text)) ��� text �Ǽ򵥵ĵ����ַ������ã�������������������Щ��ĸ����Ϊ�Ȳ��Ǵ�дҲ����Сд��

����

text

�����Ե��ַ�����

����ֵ

����ڵ�ǰ���Ի����� text ���ÿ���ַ�����һ����ĸ����ô�ͷ���TRUE����֮�򷵻�FALSE��

����

Example #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.

ע��

Note:

�������һ�� -128 �� 255 ֮��(��)������, ���ᱻ����Ϊ��ֵ��Ӧ��ASCII�ַ� (��ֵ������ 256 ��֧����չASCII�ַ�). �����������ᱻ����Ϊ��ֵ��Ӧ��ʮ�����ַ���.

�μ�