Show Output
PHP Get Ceil and Floor Value of a Number
"; // 0utputs: 5 echo ceil(9.99) . "
"; // 0utputs: 10 echo ceil(-5.18) . "
"; // 0utputs: -5 // Round fractions down echo floor(4.2) . "
"; // 0utputs: 4 echo floor(9.99) . "
"; // 0utputs: 9 echo floor(-5.18) . "
"; // 0utputs: -6 ?>