ctype_digit

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

ctype_digit�������ּ��

˵��

ctype_digit ( string $text ) : bool

����ṩ�� string �� text ������ַ��Dz��Ƕ������֡�

����

text

��Ҫ�����Ե��ַ�����

����ֵ

��� text �ַ�����һ��ʮ�������֣��ͷ��� TRUE ����֮�ͷ��� FALSE ��

������־

�汾 ˵��
5.1.0 �� PHP 5.1.0 ֮ǰ���� text ��һ�����ַ�����ʱ�򣬸ú��������� TRUE ��

����

Example #1 һ�� ctype_digit() ����

<?php
$strings 
= array('1820.20''10002''wsl!12');
foreach (
$strings as $testcase) {
    if (
ctype_digit($testcase)) {
        echo 
"The string $testcase consists of all digits.\n";
    } else {
        echo 
"The string $testcase does not consist of all digits.\n";
    }
}
?>

�������̻������

The string 1820.20 does not consist of all digits.
The string 10002 consists of all digits.
The string wsl!12 does not consist of all digits.

Example #2 һ��ͨ�� ctype_digit() ���ȶ��ַ������������ӡ�

<?php

$numeric_string 
'42';
$integer        42;

ctype_digit($numeric_string);  // true
ctype_digit($integer);         // false (ASCII 42 is the * character)

is_numeric($numeric_string);   // true
is_numeric($integer);          // true
?>

ע��

Note:

��������IJ���Ҫ����һ�� string ��һ���Ƿdz����õģ���˵��㴫��һ�� integer �IJ���Ҳ���ܵõ������Ľ����Ȼ��ͬ����Ҫע��HTML�����᷵�������ַ���������һ�����͡� �����ֲ�� types �½ڡ�

Note:

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

�μ�

  • ctype_alnum() - ����ĸ�������ַ����
  • ctype_xdigit() - ����ַ����Ƿ�ֻ����ʮ�������ַ�
  • is_numeric() - �������Ƿ�Ϊ���ֻ������ַ���
  • is_int() - �������Ƿ�������
  • is_string() - �������Ƿ����ַ���