Hallo Lukas,
wie kann ich per Einzeiler immer auf den nächsten 100er aufrunden?
Also 0.01 = 100 10 = 100 50 = 100
aber
100.01 = 200
function round_up($number) {
return ceil($number / 100) * 100;
}
echo round_up(0.01), "\n";
echo round_up(10), "\n";
echo round_up(50), "\n";
echo round_up(100.01), "\n";
Ausgabe:
100
100
100
200
LG,
CK