vote up -1 vote down star

How can i round to nearest 10 in php? Say i have 23, what code would i use to get it to 30?

flag

3  
Er, that's not the nearest 10? – Rowland Shaw Oct 24 at 22:00
ok, round up to 1 significant figure then! haha – tarnfeld Oct 24 at 22:02

7 Answers

vote up 6 vote down check

floor will go down.

ceil will go up.

round will go to nearest.

$number = floor($input / 10) * 10;

link|flag
ceil - that works :D!!! – tarnfeld Oct 24 at 22:06
vote up 9 vote down
round($number, -1);

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

link|flag
round isn't what he wants – John Nolan Oct 24 at 22:08
1  
I suppose people can't read, which is why this was voted up so many times. – Joey Oct 24 at 22:57
Can you blame them for assuming the questioner meant "round to the nearest 10" when the question said "round to the nearest 10" twice? – ceejayoz Oct 26 at 1:20
This answer was posted before the questioner clarified himself. I just figured he wasn't rounding correctly in the question. – TallGreenTree Oct 26 at 13:56
vote up 4 vote down

div by 10 then use ceil then mult by 10

http://php.net/manual/en/function.ceil.php

link|flag
vote up 1 vote down

Try

round(23, -1);

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

ceil($roundee / 10) * 10;

link|flag
vote up 0 vote down

We can "cheat" via round with

$rounded = round($roundee / 10) * 10;

We can also avoid going through floating point division with

function roundToTen($roundee)
{
  $r = $roundee % 10;
  return ($r <= 5) : $roundee - $r : $roundee + (10 - $r);
}

Edit: I didn't know (and it's not well documented on the site) that round now supports "negative" precision, so you can more easily use

$round = round($roundee, -1);

Edit again: If you always want to round up, you can try

function roundUpToTen($roundee)
{
  $r = $roundee % 10;
  if ($r == 0)
    return $roundee;
  return $roundee + 10 - $r;    
}
link|flag
hi, this works perfectly - for that question, how can i round UP? so 23 to 30? – tarnfeld Oct 24 at 22:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.