PHP Rond vers le bas
// round down
echo floor(1.5); // prints 1
// round up
echo ceil(1.5); // prints 2
DenverCoder1
// round down
echo floor(1.5); // prints 1
// round up
echo ceil(1.5); // prints 2
echo ceil(0.5); //Prints 1
$int = 8.998988776636;
round($int) //Will always be 9
$int = 8.344473773737377474;
round($int) //will always be 8
// using round() function we can roundoff float values in php
$value = 58.24365;
round($value, 2);
//result 58.24
//round up to nearest integer
echo(ceil(0.60) . "<br>");
//result 1
<?php
$price =3206250;
$bolish = $price / 1000000;
$natija = ceil($bolish); // 4
echo $natija *1000000;