How can i round to nearest 10 in php? Say i have 23, what code would i use to get it to 30?
|
|
|||||||
|
|
|
floor will go down. ceil will go up. round will go to nearest. $number = floor($input / 10) * 10; |
||
|
|
|
This will round $number to the nearest 10. You can also pass a third variable if necessary to change the rounding mode. More info here: http://php.net/manual/en/function.round.php |
||||||||||
|
|
|
div by 10 then use ceil then mult by 10 |
||
|
|
|
|
Try
|
||
|
|
|
|
My first impulse was to google for "php math" and I discovered that there's a core math library function called "round()" that likely is what you want. |
||
|
|
|
|
ceil($roundee / 10) * 10; |
||
|
|
|
|
We can "cheat" via round with
We can also avoid going through floating point division with
Edit: I didn't know (and it's not well documented on the site) that
Edit again: If you always want to round up, you can try
|
|||
|
