检查float变量小数点后的数字

时间:2015-05-05 13:27:32

标签: php numbers decimal

我有变量,这是一个浮点数

$num = 10.5;

我想检查小数点后的值

$decimal = function($num);
echo $decimal // should be 5;

我该怎么做?

1 个答案:

答案 0 :(得分:3)

你可以这样做:

function decimal($number){
    $num = explode('.', $number);
    return $num[1];
}

$decimal = decimal(10.5);
echo $decimal; // should be 5