PHP 5.6.31 Released

Voting

Please answer this simple SPAM challenge: min(three, eight)?
(Example: nine)

The Note You're Voting On

serg at kalachev dot ru
2 years ago
Excel-like ROUNDUP function:

public static function round_up($value, $places)
{
    $mult = pow(10, abs($places));
     return $places < 0 ?
    ceil($value / $mult) * $mult :
        ceil($value * $mult) / $mult;
}

echo round_up(12345.23, 1); // 12345.3
echo round_up(12345.23, 0); // 12346
echo round_up(12345.23, -1); // 12350
echo round_up(12345.23, -2); // 12400
echo round_up(12345.23, -3); // 13000
echo round_up(12345.23, -4); // 20000

<< Back to user notes page

To Top