有没有一种简单的方法来确定PHP中的(n)整数/双精度值中的小数位数?(即,不使用explode)
explode
$str = "1.23444"; print strlen(substr(strrchr($str, "."), 1));