常用php
获取小数位数
function getFloatLength($num)
{
$count = 0;
if (!is_string($num))
{
throw new \Exception('not string');
}
$num = (string) $num;
$temp = explode('.', $num);
if (sizeof($temp) > 1)
{
$decimal = end($temp);
$count = strlen($decimal);
}
return $count;
}
最后更新于 2018-10-13 10:06:46 并被添加「常用php」标签,已有 678 位童鞋阅读过。
此处评论已关闭