标签: php
可能重复: php nearest ten-th value
我想要一个函数simillar到ceil,但要获得下一个10,20,30,40,50,60,70,80,90,100数字
示例:
$x = 5; echo theunction($x);
返回10,如果$x = 15.5;则返回20,依此类推
$x = 15.5;
答案 0 :(得分:3)
只需尝试
$x = ceil($x/10) * 10;