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?

Answers were Sorted based on User's Feedback



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

Answer / saurabh rastogi

$var=7.5;
$c_var=ceil($var);

echo $c_var; // Outputs 8


$var=7.5
$c_var=floor($var);

echo $c_var; // Outputs 7

Is This Answer Correct ?    29 Yes 2 No

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

Answer / nikunj

ceil() func. gives nearest max values of passing value.

floor() func. gives nearest min values of passing value.

see above example

Is This Answer Correct ?    14 Yes 2 No

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

Answer / paul

ceil() give you the upper number of a fraction.
eg.

ceil(3.0)=3
ceil(3.1)=4
ceil(3.3)=4
ceil(3.5)=4
ceil(3.7)=4

floor() does ceil()'s opposite it returns the lower number
of the fraction

floor(3.0)=3
floor(3.1)=3
floor(3.3)=3
floor(3.5)=3
floor(3.7)=3

Is This Answer Correct ?    9 Yes 0 No

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

Answer / 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

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

Answer / rakesh kumar nautiyal

ceil() return the absolute value of a given var while floor
() return a true value of given variable

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More PHP Interview Questions

What the difference between WAMP5 1.7.3 and WampServer 2?

3 Answers  


What is php stack?

0 Answers  


Explain difference between urlencode and urldecode?

0 Answers  


How can I find the colour of a pixel of an image?

2 Answers   Rushmore Consultancy,


Seeking a PHP skilled programmer, with knowledge of MySQL Database, Javascript and AJAX. CSS and HTML is a plus. Temporary job for 2 months. Possibility of extending the contract (depending on how good you are). Location: Delhi. Start: ASAP Contact me at boney@portlane.com together with your CV.

0 Answers   Eniro,


When use javascript vs php?

0 Answers  


what is interface in php? how it is use?

10 Answers   Infosys, PHP, Times, Torque Infotech, Wipro,


Is python easier than php?

0 Answers  


What type of operation is needed when passing values through a form or an url?

0 Answers  


What is the difference between php 5 and php 7?

0 Answers  


What are the rules to determine the “truth” of any value which is not already of the boolean type?

0 Answers  


What are the advantages of PHP over HTML?

11 Answers   Infosys, Torque Infotech,


Categories