tryphp_func_var_is_numeric.php:
"; $b = 0; echo "b is " . is_numeric($b) . "
"; $c = 32.5; echo "c is " . is_numeric($c) . "
"; $d = "32"; echo "d is " . is_numeric($d) . "
"; $e = true; echo "e is " . is_numeric($e) . "
"; $f = null; echo "f is " . is_numeric($f) . "
"; ?>
a is 1
b is 1
c is 1
d is 1
e is
f is