Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what will do ceil() and floor() in PHP?

Answer Posted / nilsoft

ceil()
Returns the next highest integer value by rounding up value
if necessary.

<?php
echo ceil(4.3); // 5
echo ceil(9.999); // 10
echo ceil(-3.14); // -3
?>



floor()

Returns the next lowest integer value by rounding down value
if necessary.
<?php
echo floor(4.3); // 4
echo floor(9.999); // 9
echo floor(-3.14); // -4
?>

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Does php need html?

1043


How do you use an array in excel?

1178


how to use http headers inside php? Write the statement through which it can be added?

1079


What is the difference between characters 34 and x34?

1067


How to do single and multi line comment in php?

1051


Whether php supports microsoft sql server?

1111


What is the definition of a session?

1036


What exactly is PHP?

1062


How to break a file path name into parts?

1026


What is dao in php?

1016


What is the value for this auto incremented field user_pri_id?

988


Which function you can use in php to open a file for reading or writing or for both?

1151


What is sticky form in php?

957


Why should I learn php?

1126


Explain include(), include_once, require() and require_once?

1075