xxxxxxxxxx
$input = "6";
// NEAREST:
round($input / 10) * 10; //10
// DOWN:
floor($input / 10) * 10; //0
// UP:
ceil($input / 10) * 10; //10
xxxxxxxxxx
$input = "63";
// NEAREST:
round($input / 100) * 100; //100
// DOWN:
floor($input / 100) * 100; //0
// UP:
ceil($input / 100) * 100; //100