Zahlen in Ganzzahlen verwandeln:
"; $a = 4.75; echo "Variable a: $a
"; echo "Nach unten mit floor(): " . floor($a) . "
"; echo "Nach oben mit ceil(): " . ceil($a) . "
"; echo "Gerundet mit round(): " . round($a) . "

"; $b = -4.75; echo "

Variable b: $b
"; echo "Nach unten mit floor(): " . floor($b) . "
"; echo "Nach oben mit ceil(): " . ceil($b) . "
"; echo "Gerundet mit round(): " . round($b) . "

"; echo "

Runden auf Stellenzahl:
"; $c = 1e6 / 7; echo "Variable c: $c
"; echo "Runden auf 3 Stellen: " . round($c, 3) . "
"; echo "Runden auf -3 Stellen: " . round($c, -3) . "
"; ?>