<?php function roundUpToNearestThousand($n) { return (int) (1000 * ceil($n/1000)); } var_dump( roundUpToNearestThousand(999), roundUpToNearestThousand(1000.001), roundUpToNearestThousand(1001), roundUpToNearestThousand(1100), roundUpToNearestThousand(1600), roundUpToNearestThousand(100010) );
You have javascript disabled. You will not be able to edit any code.