您现在的位置: 365建站网 > 365文章 > PHP is_numeric函数检测变量是否为数字或数字字符串的

PHP is_numeric函数检测变量是否为数字或数字字符串的

文章来源:365jz.com     点击数:1156    更新时间:2018-08-26 10:18   参与评论

bool is_numeric ( mixed $var )


如果 var 是数字和数字字符串则返回 TRUE,否则返回 FALSE。


For example 1:

<?php
    $v = is_numeric ('58635272821786587286382824657568871098287278276543219876543') ? true : false;
    
    var_dump ($v);
?>


The above script will output:


bool(true)


For example 2:


<?php
$str="0";
$strTest=is_numeric(0);
var_dump($strTest);
?>

boolean true

   is_bool();//判断是否为布尔型

   is_float(); //判断是否为浮点型

   is_int(); //判断是否为整型

   is_numeric(); //判断是否为数值型

   is_string(); //判断是否为字符串

   is_array(); //判断是否为数组

   is_object(); //判断是否为对象

<?php
$tests = array(
    "31", 
    1380, 
    "1e4", 
    "not numeric", 
    array(), 
    9.1
);
foreach ($tests as $element) {
    if (is_numeric($element)) {
        echo "'{$element}' is numeric", PHP_EOL;
    } else {
        echo "'{$element}' is NOT numeric", PHP_EOL;
    }
}
?>


程序运行结果:


'31' is numeric

'1380' is numeric

'1e4' is numeric

'not numeric' is NOT numeric

'Array' is NOT numeric

'9.1' is numeric


字符串 1e4 也被判定为数字了。

is_numeric函数不只支持10进制的数字,也支持16进制类型数字。所以在使用中验证纯自然数字如QQ号码这样的数字串,要配合 intval()整型化函数。


<?php
    $id = 0xff33669f;
    if (is_numeric($id)) 
    echo $id, '符合要求。';//output 4281558687符合要求。
    else 
    echo $id, '不符合要求。';
?>


如果需要判断整数,可以使用 is_int()函数,以免发生一些字符串也当成是合法数字的情况。

is_numeric能判定一个变量是否为数字或数字字符串,但是它的判定范围太宽了。整数、小数、指数表示以及16进制数值都会通过判断。 平时判定id的时候,用它就有点不合适。今天发现一个新的判定函数:ctype_digit,它可以只判定整数,这样就比is_numeric好一些。其他还有ctype_xdigit判定16进制整数,ctype_alpha判定字母等等函数。


如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (1156人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号