📜  PHP | IntlChar::isdigit()函数

📅  最后修改于: 2022-05-13 01:56:39.736000             🧑  作者: Mango

PHP | IntlChar::isdigit()函数

IntlChar::isdigit()函数是PHP中的一个内置函数,用于确定给定的输入代码数据是否为数字字符。当字符在一般类别十进制数字下时返回true。从 Unicode 4 开始,这与测试 Numeric_Type 的 Decimal 相同。

句法:

bool IntlChar::isdigit ( $codepoint )

参数:此函数接受如上所述和如下所述的单个参数:

  • $codepoint:输入参数$input_codepoint是一个整数或字符,编码为UTF-8字符串。

返回值:如果 $codepoint 数据是数字字符,则返回 True,否则返回 False。
例子:

Input : $codepoint = "X"
Output : bool(false)

Input : $codepoint = "7"
Output : bool(true)

下面的程序说明了PHP中的IntlChar::isdigit()函数:
方案一:

php


php


php


输出:

bool(true)
NULL 
NULL 
NULL

方案二:

PHP


输出:

bool(false) 
bool(false) 
bool(false) 
NULL 
bool(false)

方案 3:

PHP


输出:

bool(true) 
bool(false)

参考资料: http: PHP。 PHP