php取整怎么以5为界
答案:1 悬赏:50 手机版
解决时间 2021-02-04 23:34
- 提问者网友:呐年旧曙光
- 2021-02-04 08:32
php取整怎么以5为界
最佳答案
- 五星知识达人网友:山有枢
- 2021-02-04 09:03
function rounding($amount,$num,$scope)
{
$change = 1;
for($i = 1;$i < $num;$i++){
$change = $change * 10;
}
$temp = floor($amount/$change);
if($temp%10 < $scope){
$return = floor($temp/10)*10 + $scope;
}else{
$return = (floor($temp/10)+1)*10;
}
return $return * $change;
}
echo rounding(221529,5,5);
追问大神,不知您是否有空回复一下,以5为界向上取整怎么解决,谢谢大神来自:求助得到的回答
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯