gpt4 book ai didi

php - 在 PHP 中检测轮数?

转载 作者:可可西里 更新时间:2023-11-01 13:06:16 25 4
gpt4 key购买 nike

如何判断 PHP 中的 float 是否为整数?

is_round(1.5); // false
is_round(1.0); // true
is_round(1.00000001); // false

最佳答案

根据 sterofrog 的评论修改 Rob 的代码。代码检查以确保该值也是数字。

function is_round($value) {
return is_numeric($value) && intval($value) == $value;
}

关于php - 在 PHP 中检测轮数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2349139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com