Php/func var is numeric

来自菜鸟教程
跳转至:导航、​搜索

PHP is_numeric()函数

❮PHP变量处理参考

检查变量是数字还是数字字符串:

<?php

  $a = 32;
echo "a is " . is_numeric($a) . "<br>";

$b = 0;
echo "b 
  is " . is_numeric($b) . "<br>";

$c = 32.5;
echo "c is " . is_numeric($c) 
  . "<br>";

$d = "32";
echo "d is " . is_numeric($d) . "<br>";


  $e = true;
echo "e is " . is_numeric($e) . "<br>";

$f = null;

  echo "f is " . is_numeric($f) . "<br>";

 ?>

定义和用法

is_numeric()函数检查变量是数字还是数字字符串。

如果变量是数字或数字字符串,则此函数返回true(1),否则返回false / nothing。

句法

is_numeric(variable);

参数值

参数 描述
variable 需要。指定要检查的变量

技术细节

返回值: 如果为真

variable 是数字或数字字符串,否则为FALSE

返回类型: 布尔型
PHP版本: 4.0+

❮PHP变量处理参考