Home > php教程 > php手册 > php判断变量是否是整数的两种方法

php判断变量是否是整数的两种方法

WBOY
Release: 2016-05-25 16:49:09
Original
1090 people have browsed it

方法一:可以用四舍或者五入该数字,再与原数比较,比如floor(3.1)结果应该是3,此时显然3!=3.1,或者用ceil()函数也行,这样也能判断出是否为整数。

方法二:利用php自带的函数 is_int() 可以轻松判断出该数字是否是整数。

举例说明,代码如下:

<?php
$a = 3.3;
//方法一
if (floor($a) == $a) {
    echo "$a 是整数!";
} else {
    echo "$a 不是整数!";
}
//方法二
if (is_int($a)) {
    echo "$a 是整数!";
} else {
    echo "$a 不是整数!";
}
?>
Copy after login

注意:is_int() 与floor 检查的是变量的类型,而不是变量中的内容,判断字符串时,可以用下面这个来代替,代码如下:

<?php
function str_is_int($str) {
    return 0 === strcmp($str, (int)$str);
}
?>
Copy after login

文章链接:

随便收藏,请保留本文地址!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template