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
Try this:
$number = "78921"; $round = round($number / 50000) * 50000;