round(152.555, 2);//152.56
<?php
/*The round() function rounds a floating-point number to its nearest
integer:
*/
echo(round(0.72)); # Returns 1
echo(round(0.23)); # Returns 0
echo(round(-4.13)); # Returns -4
echo(round(152)); # Returns 152
$int = 8.998988776636;
round($int) //Will always be 9
$int = 8.344473773737377474;
round($int) //will always be 8
<?php
$price =3206250;
$bolish = $price / 1000000;
$natija = ceil($bolish); // 4
echo $natija *1000000;