Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function hd_ceil_weird($num) {
$num = str_replace(" ", "", $num);
$of = 3;
if (strlen($num) <= $of) $of--;
$roundto = ("1" . str_repeat("0", (strlen($num) - $of))) * 1;
$num = number_format((ceil ($num/$roundto) * $roundto), 0, '.', ' ');;
return $num;
}
echo hd_ceil_weird (123) . "<br />";
echo hd_ceil_weird ("12 345") . "<br />";
echo hd_ceil_weird (146904) . "<br />";
sleidia said:123 becomes 130
12 345 becomes 12 400
146 904 becomes 147 000