📜  PHP | is_numeric()函数

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

PHP | is_numeric()函数

is_numeric()函数是PHP中的一个内置函数,用于检查作为参数传入函数的变量是数字还是数字字符串。该函数返回一个布尔值。

句法:

bool is_numeric ( $var )

参数:该函数接受一个强制性参数,如下所述:

  • $var:这个输入参数是函数检查它是数字还是数字字符串的变量。基于此验证,该函数返回一个布尔值。

返回值:如果 $var 是数字或数字字符串,该函数返回TRUE ,否则返回FALSE

例子:

Input : $var = 12
Output : True

Input : $var = "Geeks for Geeks"
Output : False

下面的程序说明了 is_numeric()函数:

程序 1:在这个程序中,一个数字作为输入传递。

PHP


PHP


PHP


PHP


输出:
12 is numeric

程序 2:在这个程序中,一个字符串作为输入传递。

PHP


输出:
Geeks for Geeks is not numeric

程序 3:在这个程序中,一个数字字符串作为输入传递。

PHP


输出:
467291 is numeric

程序 4:

PHP


输出:
21/06/2018 is NOT numeric
4743 is numeric
897 is numeric
929 is numeric
659 is numeric
Geek Classes is NOT numeric

参考: 函数 : PHP 。 PHP