Is there a way to round up to the nearest 50,000 in PHP?
I\'ve investigated round, but the docs don\'t suggest a way to do this, and it looks as though it is only fo
How about this:
$number = ceil($value / 50000) * 50000;