vote up 5 vote down star
3

I'm creating this rating system using 5-edged stars. And I want the heading to include the average rating. So I've created stars showing 1/5ths. Using "1.2" I'll get a full star and one point on the next star and so on...

But I haven't found a good way to round up to the closest .2... I figured I could multiply by 10, then round of, and then run a switch to round 1 up to 2, 3 up to 4 and so on. But that seems tedious and unnecessary...

flag

5 Answers

vote up 21 vote down check
round(3.78 * 5) / 5 = 3.8
link|flag
awesome! I knew there had to be an easy solution to this. Thanks (: – peirix Apr 28 at 7:35
vote up 11 vote down

A flexible solution

function roundToNearestFraction( $number, $fractionAsDecimal )
{
     $factor = 1 / $fractionAsDecimal;
     return round( $number * $factor ) / $factor;
}

// Round to nearest fifth
echo roundToNearestFraction( 3.78, 1/5 );

// Round to nearest third
echo roundToNearestFraction( 3.78, 1/3 );
link|flag
Elegant, but you are missing some "$". – eyze Apr 28 at 7:13
Nice. But since I know that I'll always be needing fraction of 5, there is really no point in creating a general function for it. But I'll def. keep this in mind. Thanks (: – peirix Apr 28 at 7:40
vote up 4 vote down
function round2($original) {
    $times5 = $original * 5;
    return round($times5) / 5;
}
link|flag
vote up 3 vote down

So your total is 25, would it be possible to not use floats and use 1->25/25? That way there is less calculations needed... (if any at all)

link|flag
+1 - that's a good point, but I'm assuming that the score of 1.2 or 1.17 or whatever is actually an average, so there'll be fractions involved at some point anyway. – nickf Apr 28 at 6:59
vote up -1 vote down

Hi i m creating percentage calculator and i want to round up textbox value nearest 10 like if we gets value 16 or 34 or other it has to change 20 , 40

can anyone help me

link|flag

Your Answer

Get an OpenID
or

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