gpt4 book ai didi

php - 检查字符串是否为 double

转载 作者:行者123 更新时间:2023-12-03 00:36:56 25 4
gpt4 key购买 nike

我正在尝试检查 php 中的字符串是否为 double 型。

这是我的代码:

   if(floatval($num)){
$this->print_half_star();
}

$num 是一个字符串。问题是,即使有一个 int,它也会给出 true。有没有办法检查它是 float 而不是整数!?

最佳答案

// Try to convert the string to a float
$floatVal = floatval($num);
// If the parsing succeeded and the value is not equivalent to an int
if($floatVal && intval($floatVal) != $floatVal)
{
// $num is a float
}

关于php - 检查字符串是否为 double,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11849663/

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